diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6659869 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venv diff --git a/images/accuracy.png b/images/accuracy.png new file mode 100644 index 0000000..ad4b673 Binary files /dev/null and b/images/accuracy.png differ diff --git a/images/boxplots_extracurricular_hours_per_day.png b/images/boxplots_extracurricular_hours_per_day.png new file mode 100644 index 0000000..930877b Binary files /dev/null and b/images/boxplots_extracurricular_hours_per_day.png differ diff --git a/images/boxplots_gpa.png b/images/boxplots_gpa.png new file mode 100644 index 0000000..034fdef Binary files /dev/null and b/images/boxplots_gpa.png differ diff --git a/images/boxplots_physical_hours_per_day.png b/images/boxplots_physical_hours_per_day.png new file mode 100644 index 0000000..386e90f Binary files /dev/null and b/images/boxplots_physical_hours_per_day.png differ diff --git a/images/boxplots_sleep_hours_per_day.png b/images/boxplots_sleep_hours_per_day.png new file mode 100644 index 0000000..5a9c24a Binary files /dev/null and b/images/boxplots_sleep_hours_per_day.png differ diff --git a/images/boxplots_social_hours_per_day.png b/images/boxplots_social_hours_per_day.png new file mode 100644 index 0000000..5330759 Binary files /dev/null and b/images/boxplots_social_hours_per_day.png differ diff --git a/images/boxplots_study_hours_per_day.png b/images/boxplots_study_hours_per_day.png new file mode 100644 index 0000000..2b33697 Binary files /dev/null and b/images/boxplots_study_hours_per_day.png differ diff --git a/images/classification_report.png b/images/classification_report.png new file mode 100644 index 0000000..2b299e0 Binary files /dev/null and b/images/classification_report.png differ diff --git a/images/confusion_matrix.png b/images/confusion_matrix.png new file mode 100644 index 0000000..e18877d Binary files /dev/null and b/images/confusion_matrix.png differ diff --git a/images/correlation_heatmap.png b/images/correlation_heatmap.png new file mode 100644 index 0000000..0b385b1 Binary files /dev/null and b/images/correlation_heatmap.png differ diff --git a/images/duplicate_entries.png b/images/duplicate_entries.png new file mode 100644 index 0000000..bc39f54 Binary files /dev/null and b/images/duplicate_entries.png differ diff --git a/images/feature_distributions_histogram.png b/images/feature_distributions_histogram.png new file mode 100644 index 0000000..08cb651 Binary files /dev/null and b/images/feature_distributions_histogram.png differ diff --git a/images/feature_importance.png b/images/feature_importance.png new file mode 100644 index 0000000..649ad34 Binary files /dev/null and b/images/feature_importance.png differ diff --git a/images/missing_values.png b/images/missing_values.png new file mode 100644 index 0000000..505228f Binary files /dev/null and b/images/missing_values.png differ diff --git a/images/removed_outliers.png b/images/removed_outliers.png new file mode 100644 index 0000000..4db6385 Binary files /dev/null and b/images/removed_outliers.png differ diff --git a/images/scatter_plot_matrix.png b/images/scatter_plot_matrix.png new file mode 100644 index 0000000..3faabb7 Binary files /dev/null and b/images/scatter_plot_matrix.png differ diff --git a/main.py b/main.py new file mode 100644 index 0000000..5cef138 --- /dev/null +++ b/main.py @@ -0,0 +1,255 @@ +import pandas as pd +import numpy as np +import matplotlib.pyplot as plt +import seaborn as sns + +from sklearn.preprocessing import MinMaxScaler, LabelEncoder +from sklearn.model_selection import train_test_split +from sklearn.linear_model import LogisticRegression +from sklearn.metrics import classification_report, confusion_matrix, accuracy_score + + +data_path = "student_lifestyle_dataset.csv" + +def main(): + # loading + df = load_data() + + # preprocessing + df_clean = preprocess_data(df) + + # exploratory data analysis + # draw_plots(df_clean) + + # separate features and target + X, y = separate_features_and_target(df_clean) + + # split into train and test data + accuracy_scores = [] + # run training many times using different splits to get an average accuracy score + for i in range(1000): + X_train, X_test, y_train, y_test = train_test_split( + X, y, test_size=0.2, stratify=y, random_state=i + ) + + # pre training processing + X_train_normalized, X_test_normalized = normalize_features(X_train, X_test) + + # training + model = train_logistic_regression(X_train_normalized, y_train) + + # prediction + y_pred = predict_target(model, X_test_normalized) + + # evaluation + le = get_label_encoder(df_clean) + # draw_feature_importance(model, X) + # draw_confusion_matrix(y_test, y_pred, le) + # draw_classification_report(y_test, y_pred, le) + accuracy = get_accuracy(y_test, y_pred) + accuracy_scores.append(accuracy) + print(f"Average Accuracy: {np.mean(accuracy_scores):.4f}") + print(f"Samples: {len(accuracy_scores)}") + +def get_accuracy(y_test, y_pred): + accuracy = accuracy_score(y_test, y_pred) + return accuracy + +def get_label_encoder(df): + le = LabelEncoder() + le.classes_ = np.array(df['Stress_Level'].cat.categories) + return le + +def draw_classification_report(y_test, y_pred, le): + report = classification_report( + y_test, y_pred, output_dict=True, target_names=le.classes_ + ) + df_report = pd.DataFrame(report).transpose() + + metrics_df = df_report.loc[le.classes_, ["precision", "recall", "f1-score"]] + + ax = metrics_df.plot( + kind="bar", + figsize=(8, 5), + rot=0, + color=["#4C72B0", "#55A868", "#C44E52"] + ) + + plt.title("Classification Report Metrics") + plt.ylabel("Score") + plt.ylim(0, 1) + plt.legend(loc="lower right") + + for p in ax.patches: + height = p.get_height() + ax.annotate( + f"{height:.2f}", + (p.get_x() + p.get_width() / 2, height), + ha='center', + va='bottom', + fontsize=9 + ) + + plt.tight_layout() + plt.show() + +def draw_confusion_matrix(y_test, y_pred, le): + y_test_decoded = le.inverse_transform(y_test) + y_pred_decoded = le.inverse_transform(y_pred) + + cm = confusion_matrix(y_test_decoded, y_pred_decoded, labels=le.classes_) + + # Plot + plt.figure(figsize=(6,5)) + sns.heatmap(cm, annot=True, fmt='d', cmap='Blues', xticklabels=le.classes_, + yticklabels=le.classes_) + plt.xlabel("Predicted") + plt.ylabel("Actual") + plt.title("Confusion Matrix") + plt.tight_layout() + plt.show() + +def predict_target(model, X_test): + y_pred = model.predict(X_test) + return y_pred + +def separate_features_and_target(df): + X = df.drop('Stress_Level', axis=1) + y = df['Stress_Level'].cat.codes + return X, y + +def draw_feature_importance(model, X): + feature_importance = pd.DataFrame({ + 'Feature': X.columns, + 'Coefficient': -model.coef_[0] + }) + + feature_importance['abs_coef'] = feature_importance['Coefficient'].abs() + feature_importance = feature_importance.sort_values(by='abs_coef', ascending=False) + feature_importance = feature_importance.iloc[::-1] + + colors = ['green' if c > 0 else 'red' for c in feature_importance['Coefficient']] + + plt.figure(figsize=(8,6)) + plt.barh(feature_importance['Feature'], feature_importance['Coefficient'], color=colors) + plt.xlabel("Coefficient (Impact on Stress Level)") + plt.ylabel("Feature") + plt.title("Feature Importance") + plt.axvline(0, color='black', linewidth=0.8) + plt.tight_layout() + plt.show() + +def train_logistic_regression(X_train, y_train): + model = LogisticRegression() + model.fit(X_train, y_train) + return model + +def load_data(): + df = pd.read_csv(data_path, encoding="ascii", delimiter=",") + return df + +def inspect_data(df): + print("Info:") + print(df.info()) + print("\n") + + print("Head:") + print(df.head()) + print("\n") + + print("Description:") + print(df.describe(include="all")) + print("\n") + +def clean_data(df): + # print("Missing values:") + # print(df.isnull().sum()) + # print("\n") + + # print("Duplicate rows in dataset:") + # print(df.duplicated().sum()) + # print("\n") + + df_clean = df.dropna(inplace=False) + return df_clean + +def remove_outliers(df): + df_clean = df.copy() + + numeric_cols = df_clean.select_dtypes(include=[np.number]).columns + if len(numeric_cols) == 0: + # print("No numeric columns detected.") + return df_clean + + mask = np.ones(len(df_clean), dtype=bool) + + for col in numeric_cols: + col_data = pd.to_numeric(df_clean[col], errors='coerce') + + Q1 = col_data.quantile(0.25) + Q3 = col_data.quantile(0.75) + IQR = Q3 - Q1 + lower_bound = Q1 - 1.5 * IQR + upper_bound = Q3 + 1.5 * IQR + + mask &= col_data.between(lower_bound, upper_bound) + + df_clean = df_clean[mask] + + # print(f"Removed {len(df) - len(df_clean)} outliers across {len(numeric_cols)} numeric columns.") + + return df_clean + +def order_data_stress_level(df): + df["Stress_Level"] = pd.Categorical( + df["Stress_Level"], + categories=["Low", "Moderate", "High"], + ordered=True + ) + +def display_feature_distributions_histogram(df): + df.hist(bins=20, figsize=(10,8)) + plt.suptitle("Feature Distributions") + plt.show() + +def display_scatter_plot_matrix(df): + sns.pairplot(df, hue="Stress_Level") + plt.suptitle("Pair Plot of Numerical Features", y=1.02) + plt.show() + +def display_correlation_heatmap(df): + corr = df.corr(numeric_only=True) + sns.heatmap(corr, annot=True, cmap="coolwarm") + plt.title("Correlation Heatmap") + plt.show() + +def display_feature_boxplots(df): + for col in df.select_dtypes(include=[np.number]).columns: + sns.boxplot(x="Stress_Level", y=col, data=df) + plt.title(f"{col} by Stress Level") + plt.show() + +def draw_plots(df): + display_feature_distributions_histogram(df) + display_scatter_plot_matrix(df) + display_correlation_heatmap(df) + display_feature_boxplots(df) + +def preprocess_data(df): + #removing uneeded feature + df.drop("Student_ID", axis=1, inplace=True) + df.drop("GPA", axis=1, inplace=True) + df.drop("Extracurricular_Hours_Per_Day", axis=1, inplace=True) + df.drop("Social_Hours_Per_Day", axis=1, inplace=True) + df_clean = clean_data(df) + order_data_stress_level(df_clean) + df_clean = remove_outliers(df_clean) + return df_clean + +def normalize_features(X_train, X_test): + scaler = MinMaxScaler() + X_train_scaled = scaler.fit_transform(X_train) # fit only on training data + X_test_scaled = scaler.transform(X_test) + return X_train_scaled, X_test_scaled + +main() \ No newline at end of file diff --git a/readme.md b/readme.md index e69de29..c50c66e 100644 --- a/readme.md +++ b/readme.md @@ -0,0 +1,130 @@ +# Student Stress Level Classifier + +A machine learning project that examines the habits of students with the goal of gaining insight into how their daily routines may affect their stress levels. Habits such as studying, extracurricular involvement, sleep, socialization, and physical activity, as well as performance indicators like GPA, are analyzed to understand their correlation with stress. + +--- + +## Goal + +The main goal of this project is to predict a student's stress level, categorized as low, moderate or high, depending on their times spent on different activities and academic performance. By providing clarity on the factors that most influence stress, the project aims to give students actionable context for developing less stressful lifestyles without compromising academic success. + +--- + +## Dataset + +The dataset used in this project was sources from [Kaggle](https://www.kaggle.com/datasets/afnansaifafnan/study-habits-and-activities-of-students), containing information about time spent on daily activities, academic performance, and reported stress level. Each entry has figures like time spent studying, sleeping, exersizing, socializing, and participating in extracurricular activities, as well as GPA. + +The target variable is the **stress level**, indicated as *low*, *moderate* or *high*. These features will allow us to explore the correlation between lifestyle patterns, academic performance and stress. They will also help us build a predictive model capable of identifying which habits most strongly influence stress. + +--- + +## Exploratory Data Anaysis + +**Key Insights:** +- Students who study more are more likely to have a higher GPA and more stress. +- Physical activity has a negative correlation with other activities, one being study and therefore stress. +- Students who sleep more were less likely to be very stressed. +- Some outliers were observed and will be need to be removed before training for more accurate results. + +**Figures:** +![Feature Distributions Historgram](images/feature_distributions_histogram.png) +![Scatter Plot Matrix](images/scatter_plot_matrix.png) +![Correlation Heatmap](images/correlation_heatmap.png) +![Study Boxplot](images/boxplots_study_hours_per_day.png) +![Sleep Boxplot](images/boxplots_sleep_hours_per_day.png) +![Sleep Boxplot](images/boxplots_extracurricular_hours_per_day.png) +![Sleep Boxplot](images/boxplots_physical_hours_per_day.png) +![Sleep Boxplot](images/boxplots_social_hours_per_day.png) +![Sleep Boxplot](images/boxplots_gpa.png) +![Feature Importance](images/feature_importance.png) + +--- + +## Data Preprocessing + +No missing values or duplicate rows were found in the dataset. Outliers in numeric features were identified using the interquartile range (IQR) method and removed before training. This helps reduce the impact of extreme values and can improve model performance. + +![Missing Values](images/missing_values.png) +![Duplicate Entries](images/duplicate_entries.png) +![Removed Outliers](images/removed_outliers.png) + +--- + +## Feature Engineering + +To improve model performance and reduce redundancy, I performed feature engineering before training: +- **GPA** was removed because it was highly correlated with **study time**, reducing redundant information and potential multicollinearity. +- Features such as **extracurricular activity time** and **social time** were removed due to low predictive importance, minimizing noise and helping the model focus on the most relevant factors. + +--- + +## Modeling + +This model was made using **logistic regression**, it works well in this situation because it models the probability of each class based on the input features, making it effective for categorical outcomes. After experimenting with different hyperparameter settings, including various solvers and iteration limits, I found that removing them entirely did not noticeably change the model's performance, indicating that the default configuration worked well enough for this purpose. + +--- + +## Results + +To ensure better results, the model was trained and evaluated using 1,000 different random seeds for splitting the training and test data. Across all samples, the model scored an accuracy of **82.6%**, indicating strong performance. + +As shown in the confusion matrix, each classification yielded slightly different results. The **high stress** students were the most identifiable, with **precision, recall, and F1-scores all above 86%**. The **moderate stress** group was the most challenging to predict, though still produced reasonable scores. This is somewhat expected, as students in the moderate category often displayed activity patterns that blended characteristics of both high and low stress groups, making them more prone to being categorized as on the extremes. + +Also, because stress is a subjective measurement, some inconsistency in labeling is expected. Students who appear to belong to one stress category based on their activities might self-report differently due to personal coping mechanisms or varying perceptions of what "stress" means to them. This subjectivity likely contributes to occasional misclassifications, even when the model's performance is otherwise strong. + +![Classification Report](images/classification_report.png) +![Confusion Matrix](images/confusion_matrix.png) + +--- + +## Conclusion + +Overall, the current state of the model is fairly reliable in predicting high-stress students. The main goal was to identify these students and provide insight into lifestyle adjustments that could help reduce stress without compromising academic performance. For students with GPAs near 4.0, this balance appears more difficult to achieve. Their elevated stress levels are often linked to the amount of time spent studying — the same factor driving their strong performance. For these students, ensuring adequate sleep (at least six hours per night) may be the most effective way to manage stress. + +Physical activity showed a small connection to lower stress levels, but this relationship was not consistent across all students. In fact, increased time spent exercising may slightly reduce GPA, suggesting that excessive physical activity could detract from study time. + +The process that produced these results was intentionally straightforward: a classification problem addressed using logistic regression to predict stress levels. Future improvements could include experimenting with more complex models such as random forests or gradient boosting. Additionally, only a single training and test split was used in this study. Incorporating cross-validation would likely provide more stable and trustworthy performance estimates by reducing the variance introduced by a single random split. + +--- + +## How to Run + +1. Clone the repository + + `git clone https://github.com/drewgiffin/student-stress-level-classifier` + `cd student-stress-level-classifier` + +2. Create a virtual enviornment (recommended), and activate it + + `python -m venv venv` + +- Windows + + `venv\Scripts\activate` + +- macOS / Linux + + `source venv/bin/activate` + +3. Install dependencies + + `pip install -r requirements.txt` + +4. Run the program + + `python main.py` + +### Notes: +Right now, the program only outputs the average accuracy after running the 1,000 random train/test splits. +If you want to visualize the results yourself: +1. Remove the model training loop that stores the accuracy scores. + +2. Uncomment the `draw_` methods in the main method. + +This allows you to view the analysis graphs instead of just the aggregated accuracy results. + +--- + +## References + +- [Study Habits and Activities of Students Dataset - Kaggle](https://www.kaggle.com/datasets/afnansaifafnan/study-habits-and-activities-of-students) \ No newline at end of file diff --git a/student_lifestyle_dataset.csv b/student_lifestyle_dataset.csv new file mode 100644 index 0000000..d27a4c2 --- /dev/null +++ b/student_lifestyle_dataset.csv @@ -0,0 +1,2001 @@ +Student_ID,Study_Hours_Per_Day,Extracurricular_Hours_Per_Day,Sleep_Hours_Per_Day,Social_Hours_Per_Day,Physical_Activity_Hours_Per_Day,GPA,Stress_Level +1,6.9,3.8,8.7,2.8,1.8,2.99,Moderate +2,5.3,3.5,8,4.2,3,2.75,Low +3,5.1,3.9,9.2,1.2,4.6,2.67,Low +4,6.5,2.1,7.2,1.7,6.5,2.88,Moderate +5,8.1,0.6,6.5,2.2,6.6,3.51,High +6,6,2.1,8,0.3,7.6,2.85,Moderate +7,8,0.7,5.3,5.7,4.3,3.08,High +8,8.4,1.8,5.6,3,5.2,3.2,High +9,5.2,3.6,6.3,4,4.9,2.82,Low +10,7.7,0.7,9.8,4.5,1.3,2.76,Moderate +11,9.7,3.6,8,2.5,0.2,3.43,High +12,6.9,1.1,9.1,2.1,4.8,2.97,Moderate +13,6.4,2.2,5.7,4.8,4.9,2.82,High +14,5,3.3,8.5,4.4,2.8,2.87,Low +15,8.9,0.3,6.8,0.7,7.3,3.4,High +16,6.7,0.3,6.6,2,8.4,3.2,Moderate +17,8.6,2.6,9.4,1.6,1.8,3.36,High +18,8.8,2.2,8.9,2,2.1,3.19,High +19,7.6,1.7,5.1,0.6,9,3.16,High +20,6.6,2,9.5,1.5,4.4,2.93,Moderate +21,7.1,3,6.1,0.5,7.3,2.9,Moderate +22,9.6,3.2,8.2,2.6,0.4,3.34,High +23,9,0.7,9.5,2.6,2.2,3.21,High +24,6.1,1.7,9.1,5.2,1.9,2.85,Moderate +25,5,2,7.1,1.3,8.6,2.68,Low +26,9.7,1.3,7.6,3.8,1.6,3.29,High +27,6.8,3.9,9.8,0.9,2.6,2.64,Moderate +28,6.4,0.1,8,3,6.5,2.95,Moderate +29,5.3,1.1,9.5,1.4,6.7,2.79,Low +30,9.9,1,8.4,3.6,1.1,3.25,High +31,6.2,2.9,6.8,3.8,4.3,3.05,Moderate +32,5.5,3.3,6.6,1.1,7.5,3.26,Low +33,5.2,2.4,8.4,0.1,7.9,2.47,Low +34,8.2,0.7,8.5,2.3,4.3,3.24,High +35,9.7,0.6,6.7,0.7,6.3,3.62,High +36,9.1,2.2,7.6,1.2,3.9,3.12,High +37,5.5,3.6,9.5,3.4,2,2.58,Low +38,8.6,3.6,9.4,1.9,0.5,3.03,High +39,8.2,0.3,5.8,5.4,4.3,3.29,High +40,5,0.6,7.7,4.2,6.5,2.61,Low +41,8.3,0.9,8.6,1.4,4.8,3.48,High +42,8.2,3.4,8.3,2.3,1.8,3.07,High +43,5.5,1.5,6.3,1.5,9.2,2.81,Low +44,9.5,2.5,9,1.5,1.5,3.49,High +45,7.9,2,6,4.3,3.8,2.97,Moderate +46,9.7,3.8,9.6,0.3,0.6,3.55,High +47,5.1,3.7,7.1,5.8,2.3,2.6,Low +48,9.3,1.3,5.8,3.3,4.3,3.09,High +49,9.7,2.8,7.9,0.3,3.3,3.47,High +50,9.4,3,8.5,2.2,0.9,3.18,High +51,6.8,1.2,9,4.9,2.1,3.12,Moderate +52,9,2.6,8.5,3.1,0.8,4,High +53,9.5,1.4,6.9,0.6,5.6,3.33,High +54,7.3,2.2,6.4,3.5,4.6,3.11,Moderate +55,5.2,0.1,9.1,2.2,7.4,2.79,Low +56,8.8,0.9,8.1,0.5,5.7,3.1,High +57,5.3,2.1,7.7,3.8,5.1,2.39,Low +58,9,1.1,7.2,0.5,6.2,3.39,High +59,5.1,3.9,9.2,4,1.8,2.52,Low +60,5.8,1,7.7,4.3,5.2,2.8,Low +61,8.3,1.1,9.8,3.5,1.3,3.67,High +62,7.1,1,6.8,4.5,4.6,3.27,Moderate +63,5.1,0.5,5.2,0.2,13,2.85,High +64,7.4,0.4,7.5,2.8,5.9,3.26,Moderate +65,5.9,1.7,7,3.7,5.7,2.8,Low +66,6.9,2.5,7.5,5.1,2,3.06,Moderate +67,8.3,0.7,5.4,3.9,5.7,3.26,High +68,9.7,2.3,6.9,3.3,1.8,3.38,High +69,7.3,2.2,9.7,1.9,2.9,3.15,Moderate +70,5.4,1.3,9.2,0.1,8,2.69,Low +71,9.1,1.1,5.6,4.2,4,3.54,High +72,8.7,3.2,6.4,1,4.7,3.37,High +73,8.8,3.2,10,0.8,1.2,3.58,High +74,6.7,3.7,9.3,1.8,2.5,2.89,Moderate +75,8.8,3,5.5,5.4,1.3,3.58,High +76,6.6,3.6,6.9,0.1,6.8,2.99,Moderate +77,9.5,0.4,6.6,5.7,1.8,3.44,High +78,8.2,1.8,6.5,2,5.5,3.35,High +79,8.4,3,9,2.8,0.8,3.26,High +80,5.3,2.2,7.2,5.3,4,2.62,Low +81,6.8,0.5,5.7,4.6,6.4,2.86,High +82,5.4,2.8,5.4,4.9,5.5,2.86,High +83,8.5,0.3,5.4,5.9,3.9,2.99,High +84,9.1,3.8,9.9,0.9,0.3,3.08,High +85,6.9,0.3,8.9,3.4,4.5,3.21,Moderate +86,5.6,2,5.1,2.8,8.5,2.81,High +87,5.3,0.5,5.6,3.9,8.7,2.9,High +88,9.8,1.5,6.4,5.2,1.1,3.78,High +89,6.1,3.9,5.1,5.8,3.1,2.96,High +90,5.4,2.2,9.8,3.1,3.5,2.81,Low +91,8.1,2.8,7.3,3.6,2.2,3.39,High +92,5.2,1.1,9.8,5.3,2.6,2.82,Low +93,7.3,2.5,6.4,1.1,6.7,2.67,Moderate +94,7.9,0.3,9.9,5.8,0.1,3.08,Moderate +95,8.5,2.1,6.5,4.9,2,3.1,High +96,9.6,3.3,9.7,1,0.4,3.54,High +97,8.1,1.7,9.7,3.9,0.6,3.45,High +98,9.9,0.6,8,2.1,3.4,3.39,High +99,9.8,3.4,9.2,0.7,0.9,3.15,High +100,5.3,3.5,9.1,6,0.1,2.68,Low +101,10,2.2,8.8,2.8,0.2,3.41,High +102,7.3,0.5,9.8,3.6,2.8,3.22,Moderate +103,6.1,2.7,8.1,2.1,5,2.98,Moderate +104,7.6,3.1,7.6,4.9,0.8,2.99,Moderate +105,7.8,2.2,9.4,1.9,2.7,3.3,Moderate +106,8.5,0.9,5.7,0.1,8.8,3.55,High +107,6.8,2.4,7,2.6,5.2,2.97,Moderate +108,7.6,3.1,7,3.7,2.6,3.28,Moderate +109,9.3,3.8,5.7,4.8,0.4,3.05,High +110,7.3,3.9,7.5,1.7,3.6,3.08,Moderate +111,8.2,1,5.4,0.8,8.6,3.3,High +112,5.9,1.4,9.5,2.8,4.4,2.7,Low +113,8.3,0.7,6,0.2,8.8,3.14,High +114,5.9,0.4,5.6,2.8,9.3,2.73,High +115,6,1.5,7.5,4.1,4.9,2.76,Moderate +116,9.4,3.7,5.3,1.6,4,3.45,High +117,9,3,5.9,1.3,4.8,3.29,High +118,8.1,1.5,7.3,4.5,2.6,2.75,High +119,5.2,1,8.6,5.4,3.8,3.4,Low +120,5.5,1.8,7.7,1.5,7.5,3.05,Low +121,6.3,1.5,5.1,1.9,9.2,2.82,High +122,5.6,3.6,8,4.1,2.7,2.62,Low +123,8.9,2,5.4,3.2,4.5,3.64,High +124,7.2,0.5,6.4,2.2,7.7,3.19,Moderate +125,8.2,2.3,6.8,5.9,0.8,2.95,High +126,5.5,0.6,6.2,1,10.7,2.94,Low +127,5.9,1.1,5.9,5.4,5.7,2.89,High +128,7.1,3.9,5.6,2.4,5,2.9,High +129,9.8,3.5,9.1,0.4,1.2,3.57,High +130,9.6,2.2,7.9,1.2,3.1,3.24,High +131,8.8,0.7,6.6,2.6,5.3,2.99,High +132,5.6,2.4,6.4,3.5,6.1,2.85,Low +133,5.8,1.9,7.7,0.3,8.3,2.7,Low +134,5.3,4,6.6,4.9,3.2,2.72,Low +135,6.3,2.7,8.8,3.6,2.6,2.45,Moderate +136,6.7,3.7,9.2,4.2,0.2,2.85,Moderate +137,5.6,2.9,9.7,1.1,4.7,2.86,Low +138,7.9,3.4,5.7,4.8,2.2,3.15,High +139,6,0.7,5.8,4.9,6.6,2.96,High +140,6.8,3.5,7,4.9,1.8,3.44,Moderate +141,7.2,1.5,7.3,1.8,6.2,3.08,Moderate +142,6.2,3.6,6.9,3.3,4,3.27,Moderate +143,9.5,2.5,5.6,5.6,0.8,3.13,High +144,5.7,3.2,8.1,3.2,3.8,3.08,Low +145,9.5,3.2,5.8,1.7,3.8,3.59,High +146,5.2,2.3,8.8,5.3,2.4,2.61,Low +147,6.7,3.3,5.6,5.1,3.3,2.95,High +148,9,0.6,6.1,4.3,4,3.15,High +149,8.6,2.6,8.5,2.3,2,3.14,High +150,5.9,3.6,7.9,2.4,4.2,2.64,Low +151,7.3,3.8,5.8,3.5,3.6,3.58,High +152,5.1,3.5,9.7,3.2,2.5,2.79,Low +153,8.5,3.7,8.5,0.5,2.8,3.65,High +154,7.1,2.9,9.7,4,0.3,3.33,Moderate +155,7.3,0.5,9.9,5,1.3,3.11,Moderate +156,8,1.6,5.3,2,7.1,3.42,High +157,9,0,6.7,2.4,5.9,3.51,High +158,6.7,1.4,8.7,2.7,4.5,3.02,Moderate +159,6.1,1.8,5.7,1.1,9.3,2.38,High +160,9.6,1.4,7.9,3.2,1.9,3.43,High +161,5.1,2.7,5.9,5.8,4.5,2.71,High +162,5.4,4,7.5,3.6,3.5,2.59,Low +163,5.3,3,6,5.4,4.3,2.68,Low +164,5.2,1.9,7.8,0.4,8.7,2.67,Low +165,8.9,1.8,7.6,2.5,3.2,3.58,High +166,5.8,0.7,9.3,5.7,2.5,2.46,Low +167,6.9,1.1,8.2,2.5,5.3,3.22,Moderate +168,5.1,0.9,6.2,4,7.8,3.02,Low +169,5.1,0.4,9,1.1,8.4,2.52,Low +170,5.5,1,8.6,5.1,3.8,2.97,Low +171,9.2,1.6,8.3,1,3.9,3.5,High +172,5.1,0.3,6,0.2,12.4,2.7,Low +173,5.9,2.3,7.1,5.4,3.3,2.78,Low +174,6.3,1.5,8,1.6,6.6,3.15,Moderate +175,8.1,1.6,7.8,2.6,3.9,3.26,High +176,8.8,0.6,9.3,2.6,2.7,3.3,High +177,9.5,3.2,7.1,0.1,4.1,3.49,High +178,8.2,1,5.7,5,4.1,2.89,High +179,9.9,2.1,5.9,1.6,4.5,3.52,High +180,6.4,2.2,8.3,5,2.1,2.76,Moderate +181,6,0,5.7,5.4,6.9,2.95,High +182,8,2.7,5.9,5.5,1.9,3.4,High +183,7.1,1.5,7.6,0.3,7.5,3.17,Moderate +184,5.4,2.4,6.2,2.3,7.7,2.66,Low +185,6.4,1.4,8.6,1.8,5.8,2.77,Moderate +186,8.3,3.7,8.7,0.7,2.6,3.77,High +187,5.2,1,8,0.3,9.5,3.29,Low +188,6.7,3.1,5.5,0.5,8.2,2.99,High +189,8.6,2,8.4,2.2,2.8,3.43,High +190,9,2.8,6.4,3.4,2.4,3.24,High +191,6.8,0.4,9.6,0.8,6.4,3.01,Moderate +192,5.9,2.2,9.4,4.4,2.1,3.01,Low +193,9,2.6,8.5,3.3,0.6,3.34,High +194,6.1,4,9.7,0.2,4,2.58,Moderate +195,8.5,3.7,5.9,3.4,2.5,3.06,High +196,9.6,3.9,9.7,0.4,0.4,3.65,High +197,9.3,3.4,6.6,3.9,0.8,3.41,High +198,6.2,0.5,5.4,4.2,7.7,2.84,High +199,6.7,2.9,5.3,1.9,7.2,3.29,High +200,6.6,2.5,9.4,3.4,2.1,3.03,Moderate +201,6.2,0.1,9.4,0.1,8.2,2.95,Moderate +202,9.7,3.2,10,0.4,0.7,3.67,High +203,8.8,1.6,7.4,3.8,2.4,3.23,High +204,7.1,3,6.2,0.7,7,3.36,Moderate +205,6.8,1.1,6.5,1.4,8.2,3.01,Moderate +206,6.9,2.7,6.1,5.7,2.6,3.08,Moderate +207,8.9,0.4,7.1,5.3,2.3,3.33,High +208,8.1,0.7,10,1.2,4,3.35,High +209,9.7,2.6,8,1.9,1.8,3.33,High +210,6.1,0.7,8.9,2.1,6.2,2.81,Moderate +211,5.3,3.9,9.4,5,0.4,3.08,Low +212,8.5,0.6,9.1,1.3,4.5,3.16,High +213,6.1,2.1,8,3.5,4.3,2.79,Moderate +214,9.4,3.8,9.3,1.2,0.3,3.33,High +215,8.3,2.2,5.4,2.5,5.6,2.97,High +216,8.6,2,5.4,1.3,6.7,3.14,High +217,8.4,0.3,9.3,3,3,3.77,High +218,9.1,1.4,8.4,2.9,2.2,3.26,High +219,6.3,3.5,9,3.4,1.8,3.11,Moderate +220,8.5,2.7,8.1,3.5,1.2,3.38,High +221,5.8,3.5,9.4,0.2,5.1,2.84,Low +222,6.7,3,5.8,4.9,3.6,3.03,High +223,9.2,2,5,1.7,6.1,3.42,High +224,8.2,1,8.2,3.2,3.4,3.24,High +225,8.9,0.4,8.8,3.2,2.7,3.32,High +226,8.2,3.7,5.5,5.6,1,3.29,High +227,8.4,0.3,6.5,4.2,4.6,3.29,High +228,6.7,2.5,5.2,5.2,4.4,2.86,High +229,9.9,3.9,8.7,0.2,1.3,3.8,High +230,8.4,1.8,6.4,6,1.4,3.25,High +231,7.1,1.8,5.8,4.8,4.5,2.86,High +232,5.4,2.7,8.3,1.6,6,2.95,Low +233,9.8,0.6,7.2,5.7,0.7,3.84,High +234,7,1.1,9.9,2.5,3.5,2.84,Moderate +235,9.5,0.9,6.1,0.2,7.3,3.17,High +236,9.3,1.9,9.8,0.6,2.4,3.68,High +237,9.3,3.1,8.9,2.3,0.4,3.52,High +238,5.7,0.1,9.6,3.7,4.9,3.12,Low +239,9,1.9,5.6,0.8,6.7,3.21,High +240,6,2,5.3,3.5,7.2,3.26,High +241,6.3,3.2,6.6,2.7,5.2,2.85,Moderate +242,8,1.2,8.5,5.2,1.1,2.72,Moderate +243,8.9,0.2,7.4,0.6,6.9,3.33,High +244,8.1,2.8,7.8,0.1,5.2,2.98,High +245,6.6,2.1,5.4,2.1,7.8,2.79,High +246,7.8,2.8,9,0.9,3.5,3.11,Moderate +247,5.8,0.4,8.2,4.2,5.4,2.88,Low +248,8.5,3.5,8.6,2.7,0.7,3.15,High +249,6.7,3.3,5.4,5.4,3.2,3.27,High +250,7.3,2.6,7.6,4.4,2.1,3.13,Moderate +251,5.4,0.2,6.2,1,11.2,2.75,Low +252,9.9,1.3,5.9,4.7,2.2,3.57,High +253,8.3,2,7.8,4.2,1.7,3.25,High +254,6,2.7,5.4,0.2,9.7,2.92,High +255,6.3,1.9,9.3,4.4,2.1,2.85,Moderate +256,6.7,1.5,9.9,0.2,5.7,3.32,Moderate +257,9.3,2.3,7.2,3.8,1.4,3.61,High +258,9.5,1.7,6.4,3.6,2.8,3.42,High +259,9.6,0.8,8.1,3.5,2,3.31,High +260,8.6,3.6,5.9,1.4,4.5,3.37,High +261,9.9,0.7,9.3,2,2.1,3.59,High +262,7.2,2.1,6.8,3.6,4.3,3.01,Moderate +263,5.8,1.6,9.8,1.5,5.3,2.61,Low +264,8.9,0.5,9.8,2.2,2.6,3.57,High +265,6.2,0.3,5.8,3.1,8.6,3.13,High +266,7.2,1,8.1,4.2,3.5,2.98,Moderate +267,5.8,0.7,5.2,4.4,7.9,2.81,High +268,9.2,3.2,7.9,3.2,0.5,3.8,High +269,6,0.4,6.3,0.3,11,3.05,Moderate +270,5.2,0.5,7.3,5.6,5.4,2.79,Low +271,6.6,2,5.2,0.9,9.3,3.17,High +272,7.3,2.1,7.4,4,3.2,3.16,Moderate +273,5.7,0.1,6.5,4.2,7.5,2.98,Low +274,9.8,0.4,8.4,2.4,3,3.26,High +275,9.3,0.7,8.5,4.6,0.9,3.43,High +276,7.5,2.5,9.3,2.7,2,3.2,Moderate +277,5.2,3.7,8.4,4.1,2.6,2.91,Low +278,7,2.6,5.5,3.9,5,2.82,High +279,10,0.2,9.9,1.6,2.3,3.56,High +280,7.8,3,9.4,1.5,2.3,3.25,Moderate +281,6.6,2.7,9,4.3,1.4,2.93,Moderate +282,9.1,0.5,7.7,0,6.7,3.64,High +283,6.6,1.5,7,4.2,4.7,2.79,Moderate +284,6.2,1.5,6.1,0.4,9.8,2.5,Moderate +285,8,2.7,8.1,2.4,2.8,3.4,Moderate +286,7.6,1.9,5.1,2,7.4,3.08,High +287,6.9,1.6,7.9,3.2,4.4,3.31,Moderate +288,9.1,2.9,9.8,0,2.2,3.48,High +289,6,0,8.2,5.4,4.4,2.92,Moderate +290,5.3,3.7,6.8,0.6,7.6,2.78,Low +291,7.4,1,6.4,1.8,7.4,3.15,Moderate +292,6.6,2.4,8.6,1.6,4.8,3.27,Moderate +293,7.1,0.5,5.9,4.1,6.4,3.09,High +294,8.5,0.4,7.8,1.5,5.8,3.01,High +295,9.8,1.9,9,1.8,1.5,3.5,High +296,9.8,2.4,9.1,2.4,0.3,3.38,High +297,6.1,0.8,8.1,2.5,6.5,2.67,Moderate +298,8.9,1.1,9.1,2.1,2.8,3.2,High +299,8.3,0.4,8.1,2.7,4.5,3.01,High +300,8.7,3.5,6.1,0.5,5.2,3.37,High +301,5.1,2.6,8,3.3,5,2.65,Low +302,8,2,9.9,0.6,3.5,2.93,Moderate +303,8.5,1.6,7.1,4.3,2.5,3.39,High +304,6.4,0.3,5.4,5.4,6.5,3.29,High +305,6,1.3,6.1,2.1,8.5,2.91,Moderate +306,5.3,3.2,6.2,3.2,6.1,2.64,Low +307,9.4,2.6,7.7,1.4,2.9,3.66,High +308,10,2.6,7.8,2.6,1,3.26,High +309,7.3,0.2,7.8,5.7,3,3.2,Moderate +310,6,2.1,5.5,2.7,7.7,2.72,High +311,8.8,1.4,8.3,4.4,1.1,3.1,High +312,10,3.7,7.7,2.2,0.4,3.44,High +313,7.6,2.5,5.4,4.5,4,3.17,High +314,8.9,2.8,5.2,1.8,5.3,3.3,High +315,6.3,1.4,5.4,5.6,5.3,2.58,High +316,7,1.8,8,3.1,4.1,3.15,Moderate +317,9.6,2,10,2,0.4,3.46,High +318,6.9,3.5,9.3,3.5,0.8,3.02,Moderate +319,9,1.2,5.4,2.4,6,3.46,High +320,6.7,3.9,8.2,4.3,0.9,2.83,Moderate +321,5.7,3.4,9.6,2.6,2.7,3.13,Low +322,5.9,2,7,0.9,8.2,3,Low +323,6.8,0.3,5.1,0.8,11,3.03,High +324,9.8,1.7,6.6,3,2.9,3.58,High +325,7.2,0.4,8.2,1.3,6.9,3.39,Moderate +326,5.8,0.2,8.9,2.8,6.3,3.11,Low +327,5.3,4,5.3,4.2,5.2,2.67,High +328,8.5,0.2,7.5,6,1.8,3.21,High +329,9.1,2.5,6.5,3.7,2.2,2.85,High +330,5.7,3.5,7.2,1.2,6.4,3.04,Low +331,6.8,1.7,9.1,4.4,2,2.9,Moderate +332,5.1,1,8.8,0.8,8.3,2.25,Low +333,7.7,0.9,5.1,1.4,8.9,3.15,High +334,5.5,2.2,7.3,5.1,3.9,2.94,Low +335,5.5,2,5.8,1.9,8.8,2.79,High +336,6.9,1.6,7.3,4.7,3.5,3.38,Moderate +337,9.5,3.8,8.9,0.6,1.2,3.3,High +338,6.3,3.4,5.2,5.4,3.7,3.31,High +339,7.3,2.5,8.3,5.3,0.6,3.36,Moderate +340,5.3,2.1,5.8,4.4,6.4,3.11,High +341,7.6,2.7,5.2,0.5,8,3.07,High +342,5.4,0,9.8,4.4,4.4,2.85,Low +343,6.8,1.2,6.7,4.6,4.7,2.81,Moderate +344,5.9,0.4,8.3,4.6,4.8,2.99,Low +345,6.3,0.1,5.4,5.8,6.4,3.14,High +346,8.1,1.5,6,0.7,7.7,3.06,High +347,8.1,3.1,8.2,2.4,2.2,3.09,High +348,9.9,2.4,7.9,2.8,1,3.67,High +349,9.1,2.6,5.6,2,4.7,3.16,High +350,7.2,2.5,9.7,1.1,3.5,2.69,Moderate +351,5.6,0.8,9.4,3.9,4.3,3.01,Low +352,9.3,3.4,9.6,0.4,1.3,3.28,High +353,8.8,1.8,9.2,3.1,1.1,3.45,High +354,5.9,2.2,9.9,5.6,0.4,3.12,Low +355,5.2,0.7,5.7,4.4,8,2.67,High +356,7.5,3.4,8.7,2.4,2,3.24,Moderate +357,8,2,6.5,3.4,4.1,3.35,Moderate +358,8.2,3,5.8,2.8,4.2,3.31,High +359,5,1,8.6,6,3.4,2.71,Low +360,9,0.8,7.8,4.4,2,3.18,High +361,8.1,0.8,6.8,4.7,3.6,3.19,High +362,8.8,0.1,8.7,1.2,5.2,3.32,High +363,9.8,1.5,6.6,0.9,5.2,3.61,High +364,10,1.5,7.2,3.8,1.5,3.43,High +365,9.4,2.4,7,2.1,3.1,3.1,High +366,9,0.4,7.9,2.9,3.8,3.6,High +367,8.2,0.3,7.9,3.4,4.2,3.64,High +368,8.4,3.2,6.3,5,1.1,3.5,High +369,7.5,0.3,5.3,2,8.9,3.26,High +370,8.9,2.1,7.2,0.9,4.9,3.53,High +371,6.6,1.7,5.4,1.3,9,3.29,High +372,10,3.7,8.2,0.9,1.2,3.63,High +373,8.2,3.1,5.6,2.5,4.6,3.16,High +374,7.9,2.4,5.9,2.2,5.6,3.4,High +375,6.7,0.1,5.1,5,7.1,3.03,High +376,6.5,3.8,6.3,2.6,4.8,2.62,Moderate +377,9.4,3.4,5.9,4.3,1,3.18,High +378,5.7,0.3,8.6,3,6.4,2.28,Low +379,7.2,2.9,8.8,0.8,4.3,2.88,Moderate +380,8.8,2.6,9.8,0.2,2.6,3.38,High +381,5.3,1.1,6.3,1.5,9.8,2.75,Low +382,6.4,3,7.2,4.7,2.7,3.03,Moderate +383,5.3,2,5.2,0.4,11.1,2.31,High +384,6.7,3.6,5.1,4,4.6,3.18,High +385,9.8,2.2,9.7,0.1,2.2,3.16,High +386,8.7,3.9,6.3,3.3,1.8,3.2,High +387,6,2.3,7.3,5.8,2.6,2.58,Moderate +388,5.6,0.6,6.1,1.5,10.2,3.07,Low +389,9.3,2.2,7.6,0.6,4.3,3.48,High +390,5.3,2.8,7.7,0.5,7.7,2.93,Low +391,7.3,1.9,5.8,5.7,3.3,3.18,High +392,7.3,1.6,8.3,3.3,3.5,3.28,Moderate +393,5.3,2.1,9,2.8,4.8,2.67,Low +394,5.8,1.3,8.8,3.1,5,2.71,Low +395,6,3.5,9.4,4.4,0.7,2.84,Moderate +396,9.9,3.1,5.1,0.4,5.5,3.17,High +397,7.3,3.6,7.7,2.7,2.7,3.15,Moderate +398,9.1,1.5,8.9,4.3,0.2,3.21,High +399,6,2.1,6.4,4.8,4.7,3.27,Moderate +400,9,1.6,9.6,2,1.8,3.57,High +401,5.8,2.8,9,1.9,4.5,2.8,Low +402,5.9,3.6,8.3,0.9,5.3,2.8,Low +403,7.2,2.5,5.4,5.3,3.6,3.08,High +404,9.8,1.7,9.9,1.7,0.9,3.75,High +405,8.2,0.7,9.4,2.4,3.3,3.47,High +406,8.6,3.6,5.4,4.4,2,3.81,High +407,5.9,3.4,9.1,3,2.6,2.68,Low +408,7.4,3.3,7.3,2.1,3.9,3.34,Moderate +409,7.5,3.3,6.7,1,5.5,3.29,Moderate +410,5.5,1,5.7,2.1,9.7,2.93,High +411,7.3,3,8.3,3.4,2,3.29,Moderate +412,7.4,3.9,8.2,0.6,3.9,3.02,Moderate +413,8.4,1.3,8.4,0.4,5.5,3.32,High +414,6.1,3.3,6.4,3.9,4.3,2.86,Moderate +415,8.5,2.1,6.5,1.3,5.6,3.38,High +416,9.4,3.1,8.9,1.7,0.9,3.45,High +417,6.3,3.6,8.4,3.2,2.5,2.92,Moderate +418,7.3,3.5,7.7,2.1,3.4,2.9,Moderate +419,9.9,0.4,7.1,0.3,6.3,3.55,High +420,6.4,3.4,6.5,5.5,2.2,3,Moderate +421,8.8,3.2,5.1,5.8,1.1,3.13,High +422,9.1,1.1,9.4,0.5,3.9,3.58,High +423,8.5,2.2,5.5,1.5,6.3,3.27,High +424,6.5,2.4,6.5,1.8,6.8,2.91,Moderate +425,8.7,0.2,9.5,4.8,0.8,3.5,High +426,9.5,0.7,5.4,1.4,7,3.77,High +427,9,0.1,7.9,6,1,3.36,High +428,5.3,3.3,8,0.7,6.7,3.03,Low +429,5.5,3.6,8.3,5,1.6,2.86,Low +430,7.6,1.7,6.6,2.6,5.5,3.34,Moderate +431,8.9,2.4,9.5,1.4,1.8,3.66,High +432,8,2.8,6.2,3.1,3.9,3.46,Moderate +433,5.5,1.5,7.4,3.9,5.7,2.85,Low +434,8.7,2,8.2,0.4,4.7,3.42,High +435,6.3,1.4,7.4,0.3,8.6,2.86,Moderate +436,9.9,1.3,7.4,1.1,4.3,3.35,High +437,8.1,1.1,6,3.1,5.7,3.15,High +438,9,2.3,7.6,1.5,3.6,3.2,High +439,9.7,1.6,5.4,3.7,3.6,3.39,High +440,7.5,3.5,7.5,3.9,1.6,2.97,Moderate +441,10,0.5,6.4,2.4,4.7,3.14,High +442,9.5,2.9,8,1.1,2.5,3.11,High +443,9.1,3.8,9.1,0,2,3.27,High +444,6.3,0.2,8,4.1,5.4,2.97,Moderate +445,5.6,1.5,7.3,2.2,7.4,2.8,Low +446,8.8,0.3,5.4,2.1,7.4,3.12,High +447,9.7,2.7,8.4,1.2,2,3.44,High +448,8.2,3.7,8.1,3.5,0.5,3.23,High +449,8.6,0.5,9.5,0.4,5,3.06,High +450,5.1,1.7,6.5,2.9,7.8,2.79,Low +451,7.9,0.2,5.6,3.4,6.9,3.44,High +452,8.3,3.4,8.5,1.6,2.2,3.07,High +453,8.4,1.1,6.5,4.7,3.3,3.54,High +454,9.1,3.4,9.6,0.8,1.1,3.31,High +455,6.6,2.3,6.9,3.6,4.6,3.2,Moderate +456,6.9,0.7,7.2,0.9,8.3,3.26,Moderate +457,9.5,1.4,5.8,0.2,7.1,3.69,High +458,6.7,0.3,7,1.9,8.1,3.28,Moderate +459,8.4,2.4,6.8,1.3,5.1,3.25,High +460,8.4,0.6,7.4,0.2,7.4,3.32,High +461,7.5,3.9,6.9,0.2,5.5,3.11,Moderate +462,5.8,0.1,8.8,2.8,6.5,2.8,Low +463,6.4,3.6,5.6,5.7,2.7,3.1,High +464,8,3.3,9.9,0.8,2,3.13,Moderate +465,9.8,1.6,6.9,1.9,3.8,3.23,High +466,7.8,2.2,8.8,4.3,0.9,3.2,Moderate +467,7.2,1.2,6.3,1.2,8.1,3.05,Moderate +468,6.4,3.9,7.8,2,3.9,2.87,Moderate +469,7.9,0.6,7.2,3.8,4.5,2.68,Moderate +470,10,3.5,8.1,1.4,1,3.44,High +471,8.1,0.8,7,0.2,7.9,3.74,High +472,6.1,3.9,9.5,3.2,1.3,2.61,Moderate +473,7.7,3.5,5.7,4.7,2.4,3.21,High +474,6.4,3.5,9.7,0.7,3.7,2.89,Moderate +475,7.3,3.9,7.4,4.7,0.7,2.74,Moderate +476,6.4,0.8,8.8,2.3,5.7,3.21,Moderate +477,7.6,2,7.9,5.2,1.3,3.13,Moderate +478,9.1,3.1,7.9,3.7,0.2,3.42,High +479,6,0.4,9.3,2.6,5.7,3.02,Moderate +480,8.1,3.7,5.1,2.9,4.2,2.63,High +481,8.4,2.9,8.5,0.6,3.6,3.07,High +482,9,1.1,6.1,5.7,2.1,3.07,High +483,5,4,8.4,5,1.6,2.9,Low +484,8.7,0.6,8.8,4.5,1.4,3.41,High +485,8.3,3.1,9.2,2.1,1.3,3.24,High +486,5.4,1.6,7,0.4,9.6,2.63,Low +487,6.7,0.4,9,5.7,2.2,2.63,Moderate +488,5.4,2,9,4.2,3.4,2.85,Low +489,5.3,0.3,7,1.8,9.6,2.64,Low +490,9,3.7,7,3.9,0.4,3.16,High +491,6.6,1.9,6.1,3.8,5.6,3,Moderate +492,6.8,2.6,5.6,5.3,3.7,3.08,High +493,7.5,1.8,7.9,3.7,3.1,3.17,Moderate +494,6.2,2.9,9.1,4.7,1.1,2.83,Moderate +495,7.8,2.1,5.7,4.7,3.7,3.16,High +496,6.4,0.5,8.1,0.3,8.7,2.61,Moderate +497,8.7,1.3,5,3.1,5.9,3.24,High +498,9.2,0,6.2,4.4,4.2,3.41,High +499,6.6,0.4,6.8,1.6,8.6,2.89,Moderate +500,8.9,3.6,7.2,3.9,0.4,3.51,High +501,6.9,3.9,5.4,4.1,3.7,2.55,High +502,8.2,2.8,5,1,7,3.2,High +503,8.6,2.7,9.8,2.2,0.7,3.31,High +504,6.5,0.4,8.9,3.9,4.3,3.01,Moderate +505,5.2,1.4,9.8,3,4.6,2.49,Low +506,6,1.5,6.8,0.3,9.4,2.44,Moderate +507,8.8,1.7,9.1,3.7,0.7,3.44,High +508,7.4,3.5,6.1,4.1,2.9,2.88,Moderate +509,8,1.2,5.7,3.9,5.2,3.03,High +510,8.2,1.6,8.6,1.1,4.5,3.46,High +511,9.5,1.1,6.8,0.3,6.3,3.43,High +512,6.3,3.3,5.1,2.3,7,2.74,High +513,6.7,0.1,5.6,2.5,9.1,2.49,High +514,7.7,2.4,5,2.8,6.1,3.12,High +515,9.8,2.1,8.4,1.2,2.5,3.61,High +516,7.6,3.9,5.6,0.1,6.8,3.28,High +517,8.9,3.2,5.6,1.6,4.7,3.36,High +518,6.7,1.5,5,1.8,9,3.31,High +519,8.2,3.9,9.2,0.1,2.6,3.26,High +520,8.9,1.8,7,1.8,4.5,3.38,High +521,5.3,0.9,6.2,2.9,8.7,2.76,Low +522,5.3,3.8,9.7,4.1,1.1,3.13,Low +523,10,2.2,9.8,0.2,1.8,3.25,High +524,6,0.6,8.1,4.7,4.6,2.78,Moderate +525,7.9,0.6,9.1,3.8,2.6,3.5,Moderate +526,6.3,1.4,9.6,1.7,5,2.74,Moderate +527,7.3,3.6,8.5,0.3,4.3,2.93,Moderate +528,5.7,3.8,7.6,1.5,5.4,3.27,Low +529,7.5,2.7,5.4,1.6,6.8,3.09,High +530,7.7,1.7,5.2,1,8.4,3.43,High +531,7.2,0.8,5.2,5.1,5.7,2.99,High +532,9.8,0.8,9.8,3.6,0,3.59,High +533,8.6,3.9,7.8,1,2.7,3.69,High +534,5.4,2.5,9.9,1.1,5.1,2.54,Low +535,9,3.6,9.7,1.6,0.1,3.44,High +536,8.8,0.6,7.4,4.3,2.9,3.32,High +537,6.2,2.6,8.3,1,5.9,3.23,Moderate +538,7.5,0,5,2.1,9.4,3.2,High +539,9.6,0.9,8.2,1.2,4.1,3.62,High +540,8.6,0.4,7.1,0.2,7.7,3.2,High +541,7.4,2.6,5.6,1.7,6.7,3.26,High +542,10,0.2,8.8,1.9,3.1,3.46,High +543,7,3,9.6,4.2,0.2,2.68,Moderate +544,8.9,1,7.8,2.2,4.1,3.54,High +545,8.3,1,6,5.5,3.2,3.25,High +546,6.1,0.2,5.2,1.1,11.4,2.72,High +547,9.3,1.1,9.8,2.2,1.6,3.79,High +548,7.6,3,6.4,2.1,4.9,2.83,Moderate +549,9.5,3.8,9.5,0.5,0.7,3.4,High +550,7.5,0.8,8,1.1,6.6,3.43,Moderate +551,6.7,3.4,6,0.4,7.5,2.48,Moderate +552,9.1,3.3,6.7,3.4,1.5,3.4,High +553,8.9,2.6,5.8,5.3,1.4,2.98,High +554,7.1,0.2,5.6,4.6,6.5,3.13,High +555,5,1.7,7.6,0.3,9.4,2.53,Low +556,6.2,0,8.6,5.8,3.4,2.71,Moderate +557,6.1,2.7,8.7,5.1,1.4,2.57,Moderate +558,6.6,2.9,9.1,1,4.4,2.85,Moderate +559,6.9,3.6,9,4.4,0.1,2.92,Moderate +560,8,2.6,5.4,3.3,4.7,3.48,High +561,8.5,0.7,8.9,3.4,2.5,3.41,High +562,6.5,2.9,8.8,0.6,5.2,2.67,Moderate +563,7.6,2,6.8,5.6,2,3.25,Moderate +564,8.6,1.8,9.6,2.8,1.2,3.47,High +565,8.6,3.4,6.4,4.5,1.1,3.18,High +566,6.7,3.9,9.3,2.9,1.2,2.78,Moderate +567,8.6,2.2,9.7,1.7,1.8,3.07,High +568,8.9,2.9,6.9,0.1,5.2,3.26,High +569,9.2,0,8.5,5.8,0.5,3.08,High +570,8.5,3.3,7.7,4.4,0.1,3.2,High +571,5.3,2,8.6,5.2,2.9,2.89,Low +572,7.8,1.6,5.7,5.2,3.7,3.06,High +573,5.8,1.2,6.5,5.2,5.3,3.08,Low +574,6.3,2.5,7.9,5,2.3,3.07,Moderate +575,9.5,0,8.4,0.3,5.8,3.07,High +576,6.5,1.4,8.1,2,6,3.06,Moderate +577,8.7,1.6,5.3,4.7,3.7,3.2,High +578,8.4,1.3,5.3,2.2,6.8,2.92,High +579,9.7,2.6,8.4,2.1,1.2,3.38,High +580,8.8,0.4,6.4,1.7,6.7,3.05,High +581,7.2,3.9,5.3,3.1,4.5,3.03,High +582,8.7,2.8,7.1,1.9,3.5,3.12,High +583,7,1.1,6,2.9,7,2.87,Moderate +584,8.3,3.9,8,0.3,3.5,3.04,High +585,5.4,3.8,6.5,0.6,7.7,3.14,Low +586,8.2,1.1,5.1,5.8,3.8,3.5,High +587,6.3,2.7,8.5,3.7,2.8,2.72,Moderate +588,8,3.5,9.7,0.3,2.5,3.02,Moderate +589,5.8,3.8,8.7,5,0.7,2.95,Low +590,8.5,2.7,7,0.1,5.7,3.01,High +591,7.9,1,7.3,5.7,2.1,3.41,Moderate +592,5.9,2.7,9.9,0.6,4.9,2.82,Low +593,5,1.7,5.5,4.5,7.3,2.72,High +594,6.3,1.7,8.6,0.1,7.3,3.11,Moderate +595,7.9,2.5,8.2,1.3,4.1,3.08,Moderate +596,6,3.5,8.7,0.1,5.7,2.95,Moderate +597,6.2,0.9,6.4,1.5,9,2.92,Moderate +598,8.7,2.4,8.4,0.4,4.1,3.16,High +599,9.8,3.4,9,1.5,0.3,3.49,High +600,6,2.5,8.7,4.4,2.4,3.05,Moderate +601,7.6,0.3,6.9,5.5,3.7,3.35,Moderate +602,6.3,1.5,9.5,4,2.7,3.42,Moderate +603,8.9,1.8,8.2,1.3,3.8,3.21,High +604,7.2,2.6,9.7,0.3,4.2,3.42,Moderate +605,9.1,1.2,7.2,0.1,6.4,3.37,High +606,5.3,2,9.6,0.6,6.5,2.41,Low +607,8.8,1.6,8.3,1.4,3.9,3.26,High +608,5.4,0.7,8.3,5.3,4.3,2.75,Low +609,9.1,2.7,5.6,1.7,4.9,3.15,High +610,7.6,2.1,6.8,2.1,5.4,2.97,Moderate +611,9.1,3.2,6.5,4.8,0.4,3.34,High +612,6.8,2,9.7,4.8,0.7,3.09,Moderate +613,5.5,1.6,7.8,3,6.1,2.9,Low +614,8.4,3.4,9.3,2.2,0.7,3.2,High +615,7.2,2.4,5.8,4,4.6,3.19,High +616,6.1,0.5,5.8,0,11.6,2.73,High +617,8.6,2.9,7.6,0.8,4.1,3.15,High +618,5.5,0.9,7.6,3.6,6.4,2.57,Low +619,6.2,0.2,7,1.4,9.2,3.13,Moderate +620,7.1,1.7,7.7,4.2,3.3,3.48,Moderate +621,8.5,0.7,7.5,2.5,4.8,3.34,High +622,7.7,0.5,8,0.7,7.1,3.34,Moderate +623,6.7,0.6,8.5,1.2,7,3.18,Moderate +624,6,2,7.1,0.1,8.8,2.85,Moderate +625,9,0.3,7.4,3.4,3.9,3.64,High +626,6.3,0,8.6,3.2,5.9,3.14,Moderate +627,9.2,3.3,9.2,1.1,1.2,3.6,High +628,7.3,0.7,9.3,5.3,1.4,2.97,Moderate +629,7.3,0.3,6.9,4.8,4.7,3.09,Moderate +630,5.3,3.5,6.9,3.3,5,2.81,Low +631,9.8,0.3,8.2,0.4,5.3,3.71,High +632,7.2,4,7.8,1.6,3.4,2.98,Moderate +633,6.1,1.4,6.9,0.4,9.2,2.79,Moderate +634,8.6,2.6,8.5,0,4.3,2.85,High +635,6.1,2.6,7.4,0,7.9,3.03,Moderate +636,7.7,0.3,8.8,3.5,3.7,3.29,Moderate +637,8.9,3,9,1.6,1.5,3.42,High +638,8.1,3,5.8,1.2,5.9,3.04,High +639,9.5,3,9.5,1.5,0.5,3.76,High +640,9.4,2.3,8.2,0.6,3.5,3.62,High +641,7.4,2.9,6.4,1.2,6.1,2.89,Moderate +642,6.1,1.7,9.5,3,3.7,2.76,Moderate +643,5.9,0.3,8.5,2.3,7,2.99,Low +644,9,1.1,8.5,1.4,4,3.56,High +645,9.7,2.5,6.6,1.4,3.8,3.57,High +646,6.1,2.4,6.3,4,5.2,2.73,Moderate +647,9.1,3.1,8.8,0.6,2.4,3.42,High +648,6.8,1.7,5.2,1.6,8.7,2.91,High +649,5.2,3.5,6.2,3.3,5.8,2.8,Low +650,6.6,3.6,9.4,1.4,3,2.94,Moderate +651,9.5,4,9.1,1.2,0.2,3.52,High +652,5.3,0.4,10,2,6.3,2.49,Low +653,8.7,3.2,9.3,2.8,0,3.1,High +654,5.1,1.4,8.9,3.4,5.2,2.72,Low +655,6.6,2.6,6.2,0.1,8.5,3.11,Moderate +656,8.8,0.2,9.2,3.6,2.2,3.59,High +657,7.8,2.5,9.3,2.6,1.8,3.2,Moderate +658,8.8,1.8,8.5,1.9,3,3.32,High +659,6.1,2.4,9.6,5.5,0.4,2.99,Moderate +660,6.1,4,9.9,2.6,1.4,2.49,Moderate +661,9,2.9,8,0.2,3.9,3.74,High +662,8.4,1.5,9.7,0.7,3.7,3.16,High +663,7.5,2.8,8.5,3.4,1.8,2.98,Moderate +664,8.2,2.4,5.9,4.2,3.3,3.13,High +665,7.3,2.7,9.2,0.8,4,3.41,Moderate +666,9.2,3.2,9.8,1,0.8,3.55,High +667,7.4,1.6,5.8,3.4,5.8,3.19,High +668,7.9,2.4,6.8,0.3,6.6,3.14,Moderate +669,5.2,1.7,5.4,3.6,8.1,2.55,High +670,9.3,3.5,6,3.8,1.4,3.52,High +671,6.4,3.2,10,0.1,4.3,3.01,Moderate +672,9.9,1.9,9.2,0.2,2.8,3.65,High +673,6.7,0.3,9.9,4.9,2.2,2.96,Moderate +674,5.4,0.8,6.1,2.8,8.9,2.66,Low +675,6.3,0.4,5.8,0.9,10.6,2.93,High +676,6.4,3.2,6.6,1.8,6,3.06,Moderate +677,6.2,0.5,6.3,2.1,8.9,2.84,Moderate +678,6.1,3.2,5.7,2.1,6.9,2.95,High +679,9.3,0.6,5.4,2.9,5.8,3.51,High +680,9,0.5,7.9,3,3.6,2.99,High +681,5.7,2.5,6.4,2.9,6.5,2.84,Low +682,6.5,3.3,5.3,2.5,6.4,2.81,High +683,7.3,2.9,7.9,3.9,2,3.19,Moderate +684,6.6,2.2,9.2,5.9,0.1,3.06,Moderate +685,9.4,1.5,6,2.9,4.2,3.4,High +686,7.4,3.4,6.8,5.2,1.2,3.45,Moderate +687,7,1.3,7.3,4.6,3.8,3,Moderate +688,9.8,0.7,7.8,3.3,2.4,3.41,High +689,7.4,2.6,6.1,3.3,4.6,3.41,Moderate +690,5.7,2.3,5.9,1.7,8.4,2.62,High +691,6.1,0.7,9.1,1.7,6.4,2.69,Moderate +692,6.9,3.2,6.8,0.5,6.6,3.08,Moderate +693,7.8,3.4,9,0.7,3.1,2.95,Moderate +694,6.1,3.5,6.2,1.6,6.6,3.05,Moderate +695,5,3.5,9,3.8,2.7,2.62,Low +696,7.3,1.4,5.5,2.9,6.9,3.19,High +697,9.6,0.2,6.5,1.2,6.5,3.5,High +698,7.3,1.9,8.8,0.9,5.1,3.06,Moderate +699,7.4,1.7,8,6,0.9,3,Moderate +700,9.1,0.7,5.2,1.2,7.8,3.64,High +701,6.7,2,8.1,5.5,1.7,3.11,Moderate +702,5.3,0.1,7.8,2.6,8.2,3.58,Low +703,9.2,0.6,5.1,2.7,6.4,3.27,High +704,8,1.1,5.9,2.3,6.7,3.27,High +705,9,1.6,8.8,0.6,4,3.2,High +706,8.4,2.3,9.6,1.4,2.3,3.41,High +707,5.3,0.1,9.1,3.1,6.4,2.65,Low +708,6.7,0.1,9.8,4,3.4,3.15,Moderate +709,9.7,1.1,8.1,3.5,1.6,3.63,High +710,9.7,3.5,8.7,0.6,1.5,3.36,High +711,6.4,3.9,5.1,4.3,4.3,3.14,High +712,10,1.2,6.7,0.5,5.6,3.79,High +713,7.2,1,6.7,5,4.1,3.21,Moderate +714,5.3,0.4,5.8,3.6,8.9,2.76,High +715,5.8,3.9,7.2,3,4.1,2.83,Low +716,8.3,3,8.8,2.3,1.6,2.92,High +717,9.5,3.3,8.8,0.1,2.3,3.24,High +718,7,3.5,9.5,3.6,0.4,3.4,Moderate +719,6.6,2.8,6.4,1.1,7.1,2.88,Moderate +720,7.1,3.3,5.6,4.4,3.6,2.85,High +721,7.7,1.2,7.5,1.8,5.8,2.88,Moderate +722,5.8,0.5,7.7,5.4,4.6,3.27,Low +723,6.7,2.9,8.3,5.6,0.5,3.06,Moderate +724,8.3,3.6,7,1.7,3.4,3.5,High +725,5.1,3.3,9,0.6,6,2.54,Low +726,5.6,3.9,6.1,0.4,8,3.32,Low +727,8,3,5.2,4,3.8,3.01,High +728,5.9,2.3,6.5,5.6,3.7,2.9,Low +729,9.1,3.9,6.3,4.6,0.1,2.98,High +730,5.3,0.2,8.5,2.7,7.3,2.62,Low +731,6.1,2.5,6.3,3.5,5.6,3.13,Moderate +732,9.1,1.9,6.8,2.2,4,3.27,High +733,9,1.3,6,0.5,7.2,3.05,High +734,9.2,0.9,6.9,4.9,2.1,2.81,High +735,9.1,1.5,7.3,1.8,4.3,3.4,High +736,7.7,0.1,7.4,2.4,6.4,3.24,Moderate +737,5.8,2.6,9.9,3.2,2.5,2.8,Low +738,7.1,0.5,8.1,5.6,2.7,3.1,Moderate +739,8.3,0.3,6.8,3.3,5.3,3.48,High +740,9.1,2.4,6.9,1.4,4.2,3.3,High +741,5.5,1.4,7.1,4.1,5.9,2.71,Low +742,7,0.7,5.8,5,5.5,3.09,High +743,5.2,1.7,5.8,5.3,6,2.48,High +744,7.5,2.9,9.8,0.8,3,3.19,Moderate +745,9.4,3.7,9.6,0.8,0.5,3.16,High +746,8.8,2.1,8.4,2,2.7,3.66,High +747,8.7,3.3,5.7,5,1.3,3.55,High +748,7.2,1.5,9.6,1.4,4.3,3.11,Moderate +749,9.2,1.9,7.6,1.6,3.7,3.02,High +750,5.2,1.1,5,5.9,6.8,2.93,High +751,9.8,1.6,8.6,1.4,2.6,3.68,High +752,9.7,1.6,8.9,1,2.8,3.57,High +753,10,0.1,8,3.9,2,3.35,High +754,9.7,0.7,8.1,1.2,4.3,3.53,High +755,6.5,2.2,7.1,1,7.2,2.91,Moderate +756,8.8,3.6,5.4,2.4,3.8,3.08,High +757,5.5,0.1,8.3,3.6,6.5,2.73,Low +758,5.1,3.3,9.9,0.8,4.9,2.64,Low +759,6.2,3.5,9.6,2,2.7,2.55,Moderate +760,5.1,2.3,5.1,4.7,6.8,3.03,High +761,6.5,0.2,7.9,2.4,7,2.98,Moderate +762,6.4,2.8,6.4,5.4,3,3.05,Moderate +763,6.9,2.2,5.3,2.6,7,3.12,High +764,6.1,0.9,9.1,5.6,2.3,3.01,Moderate +765,5.5,1.8,6.7,5.2,4.8,2.24,Low +766,6.7,1.6,7.6,1,7.1,2.93,Moderate +767,7.9,3.2,8.8,0.6,3.5,3.09,Moderate +768,6.8,1.6,8.4,0.3,6.9,2.88,Moderate +769,5.2,1.6,8.5,1.2,7.5,2.52,Low +770,9.4,3.6,6.5,1,3.5,3.57,High +771,7.1,1,8.4,5,2.5,3.26,Moderate +772,7,0.6,8.7,2.2,5.5,3.15,Moderate +773,8.4,1.1,5.4,6,3.1,3.44,High +774,9.3,1.2,7.3,3.7,2.5,3.76,High +775,7.1,1.7,6.7,3.4,5.1,2.99,Moderate +776,9.7,2.8,9.1,1.3,1.1,3.54,High +777,8.9,0.1,9.1,0.2,5.7,3.14,High +778,8.8,1,9.3,0.5,4.4,3.18,High +779,5.6,3.9,8.4,5.1,1,3.08,Low +780,8,2.4,8.4,3,2.2,2.96,Moderate +781,7.1,1.1,8.8,1.4,5.6,2.85,Moderate +782,8.1,3,6.1,0.4,6.4,3.37,High +783,5.7,2.4,9.2,0.3,6.4,2.69,Low +784,7.4,3.7,6.7,2.8,3.4,3.36,Moderate +785,5.1,0.3,6.3,0.2,12.1,2.55,Low +786,7.7,0.7,6.5,4,5.1,3.54,Moderate +787,9.8,0.2,9.5,2.6,1.9,3.47,High +788,5.3,0.4,8,2,8.3,3.37,Low +789,9.6,1.6,5.7,4.3,2.8,3.49,High +790,8.5,3.6,9,2,0.9,2.9,High +791,8.4,3.8,6.5,0,5.3,3.08,High +792,8.3,2.5,8,0.1,5.1,3.1,High +793,8.6,1.3,8.3,3.2,2.6,3.11,High +794,5.5,3.3,9.6,3.6,2,2.75,Low +795,5.5,1.6,8.6,4.7,3.6,2.64,Low +796,6.3,0.1,7.7,5.1,4.8,3.22,Moderate +797,9.8,2.3,7.6,0.4,3.9,3.04,High +798,8,1.6,6.2,0.6,7.6,3.38,Moderate +799,6.6,0.4,5.9,5.9,5.2,3.27,High +800,9.4,4,7.9,2.2,0.5,2.91,High +801,6.6,1.2,7,4,5.2,2.76,Moderate +802,5.7,2.5,5.6,3.5,6.7,3.08,High +803,8.5,2.8,8.8,3.4,0.5,3.63,High +804,8.1,0.7,5.1,1.7,8.4,3.21,High +805,7.2,2.5,9.2,1,4.1,3.07,Moderate +806,7.9,2.2,5.4,0.3,8.2,2.99,High +807,5.5,2.3,7.7,1.4,7.1,3.05,Low +808,5.2,2,8.4,1.5,6.9,2.88,Low +809,6.5,2.5,9.5,4.5,1,3.29,Moderate +810,6.8,2.6,7.3,1.1,6.2,3.13,Moderate +811,8.5,2.2,6.8,5.5,1,3.07,High +812,8.4,1.6,8.8,2.4,2.8,3.51,High +813,7.1,3.7,6.3,0.7,6.2,3.15,Moderate +814,6.9,0.2,6.7,3,7.2,3.05,Moderate +815,5.8,2.6,10,2.5,3.1,2.64,Low +816,5.6,3.5,7.1,2.3,5.5,2.5,Low +817,8.3,1.8,8.2,0.4,5.3,3.33,High +818,5.8,1.9,8,3.5,4.8,2.9,Low +819,7,1.4,5.6,2.4,7.6,3.15,High +820,6,0.2,7.8,3.6,6.4,2.75,Moderate +821,9.4,2.3,6.7,4.5,1.1,3.25,High +822,7.8,3.6,7,1.7,3.9,3.19,Moderate +823,5.7,0.6,7.2,3.6,6.9,2.96,Low +824,9.1,0.3,7.4,3.8,3.4,3.66,High +825,9.1,3.1,6.4,5.1,0.3,3.45,High +826,7.9,3.7,8.4,1.9,2.1,2.68,Moderate +827,9,3.8,5.1,5.9,0.2,3.22,High +828,7.2,2.6,6.9,0.3,7,3,Moderate +829,8,3.6,6.9,1.2,4.3,3.08,Moderate +830,9.1,3.3,7.9,1.3,2.4,3.35,High +831,9,2.2,9.1,2.3,1.4,3.44,High +832,7.1,3.8,7.7,3.3,2.1,3.33,Moderate +833,6.1,2.5,7.9,1.1,6.4,2.94,Moderate +834,8.8,2.1,6.1,4,3,3.2,High +835,5.4,1.8,5.8,1.1,9.9,2.71,High +836,5.3,1.6,7.6,2.9,6.6,2.54,Low +837,6.9,3.4,5.7,3,5,3.37,High +838,9.4,2.2,9.8,0.1,2.5,3.79,High +839,5.5,0.2,5.9,3.2,9.2,2.74,High +840,9.7,3.4,6.5,0.3,4.1,3.48,High +841,5.8,0.5,5.6,3.1,9,2.73,High +842,9.9,2.7,9.7,0.2,1.5,3.23,High +843,6.9,2.2,5.4,0,9.5,3.27,High +844,7.1,2,7.1,0.1,7.7,3.34,Moderate +845,6.7,0.7,5.5,5.7,5.4,3.31,High +846,6.6,1.6,6.2,0.6,9,3.12,Moderate +847,5.9,3.2,8.4,3.3,3.2,3.05,Low +848,5.4,1.1,6.7,4.7,6.1,2.8,Low +849,10,1,9.4,3,0.6,3.4,High +850,7,3.9,5.9,4.8,2.4,2.78,High +851,6.7,2.9,7.1,3.5,3.8,3.09,Moderate +852,9.3,0.2,8.5,0.8,5.2,3.49,High +853,7.1,2.2,7,3.1,4.6,2.87,Moderate +854,5.7,0.6,9.7,5.3,2.7,3.18,Low +855,9.5,4,6,1.6,2.9,3.39,High +856,7.1,1.4,8,3.5,4,3.48,Moderate +857,5.8,1.9,7.8,3.4,5.1,3.01,Low +858,5.1,1.4,8.9,3.4,5.2,2.6,Low +859,6.3,2.8,7.8,4.8,2.3,3.08,Moderate +860,7.4,0.5,6.3,2.5,7.3,3.4,Moderate +861,8,2.1,6.4,0,7.5,2.83,Moderate +862,8.7,0.1,7.9,5.6,1.7,3.3,High +863,5.9,1.9,5.5,3.8,6.9,2.45,High +864,7.6,3.6,6,0.1,6.7,3.38,Moderate +865,9.3,2.3,9.5,1.7,1.2,3.34,High +866,8.7,3.7,7.9,0.7,3,3.57,High +867,6.3,0.8,6.2,1.8,8.9,3.37,Moderate +868,7.1,2.5,5.4,0.5,8.5,3.33,High +869,5.9,2.1,6.1,1.7,8.2,3.13,Low +870,5.1,2.6,8.3,4.8,3.2,2.69,Low +871,9.7,0.1,5.8,5.3,3.1,3.92,High +872,8.3,2.7,9.7,3.3,0,2.95,High +873,8.6,1.1,9.4,0.2,4.7,3.36,High +874,6.3,0.9,5.7,5.2,5.9,2.9,High +875,7.5,2.7,6.2,4.5,3.1,2.97,Moderate +876,7.1,0.8,9.9,3.9,2.3,3.28,Moderate +877,9.7,1.2,8.9,3.2,1,3.26,High +878,8.4,2.9,7.9,1,3.8,3.2,High +879,7.5,1.2,7.1,3.9,4.3,2.96,Moderate +880,7,1.1,6,4.7,5.2,3.2,Moderate +881,9.5,1.5,8.8,3.8,0.4,3.36,High +882,9.8,1.5,6.7,0.4,5.6,3.54,High +883,7.4,0.4,6.2,1.9,8.1,3.16,Moderate +884,6.5,3.4,9.3,3.7,1.1,3.02,Moderate +885,5.7,2.8,9.7,4,1.8,2.86,Low +886,8.2,2,5.6,1.9,6.3,2.81,High +887,9,3.4,5.7,5.6,0.3,3.59,High +888,8.8,3.2,9.7,0.7,1.6,3.07,High +889,9.3,0.5,8.5,4.2,1.5,3.17,High +890,9.4,0.7,5.3,4.3,4.3,3.57,High +891,7.4,3.4,6.9,1,5.3,3.15,Moderate +892,5.9,2.9,7.6,3.6,4,3.13,Low +893,7.3,3.3,9.1,3.1,1.2,3.34,Moderate +894,6.8,3.5,8.6,0.6,4.5,3.23,Moderate +895,7,3.5,5.2,5.8,2.5,3.26,High +896,6.4,1,9.7,1.8,5.1,3.25,Moderate +897,8.9,1.6,5.7,0.1,7.7,3.42,High +898,6.8,1.4,6.7,3.1,6,3.03,Moderate +899,7.2,3.5,7.5,2.9,2.9,3.04,Moderate +900,8.3,2.4,7.1,2.5,3.7,3.22,High +901,8.9,0.8,9.1,3.4,1.8,3.1,High +902,6.3,3,7.6,1.9,5.2,2.48,Moderate +903,8,4,7.2,4.4,0.4,3.11,Moderate +904,6,1.7,6.1,0,10.2,2.87,Moderate +905,9.6,3.4,8.7,0.4,1.9,3.5,High +906,7.2,0.5,7.6,2.1,6.6,3.11,Moderate +907,6.9,2.5,8.6,0.7,5.3,3.29,Moderate +908,6.7,1.8,8.4,3.1,4,2.92,Moderate +909,9.3,3.5,5,4.7,1.5,3.45,High +910,7.4,3.9,8.8,1,2.9,3.11,Moderate +911,7.7,4,9.3,0.3,2.7,2.96,Moderate +912,5,1.6,6.2,4.9,6.3,3.01,Low +913,6.7,3.3,5,1.8,7.2,2.85,High +914,5.3,0.7,7.8,1.7,8.5,2.64,Low +915,7.1,1.5,9.4,5.4,0.6,2.65,Moderate +916,5.5,3.8,5.3,1.8,7.6,2.81,High +917,6.5,1.3,5.8,4.7,5.7,3.04,High +918,5.6,0.3,9.5,1.1,7.5,2.66,Low +919,9.1,2.2,5.4,5.7,1.6,3.48,High +920,5.8,3.4,5.1,3.1,6.6,2.79,High +921,8.8,3.7,9.5,1.6,0.4,3.29,High +922,6.4,1.2,6.9,2.4,7.1,3,Moderate +923,7.7,0.6,8.5,1,6.2,3.16,Moderate +924,9,3,8.2,0.6,3.2,2.96,High +925,7.7,0.3,6.9,2.5,6.6,3.08,Moderate +926,5.9,1.6,9.7,0.8,6,2.86,Low +927,8.8,0.4,9.9,1.9,3,3.19,High +928,8.1,0.8,5.7,5.6,3.8,3.45,High +929,9.6,3.5,8.1,2.3,0.5,3.4,High +930,6.6,2.5,6.8,0.9,7.2,2.88,Moderate +931,8,3.3,6.9,0.8,5,3.08,Moderate +932,6.5,2.6,8,4.2,2.7,2.83,Moderate +933,6.8,3.3,6,2.8,5.1,2.92,Moderate +934,5.5,3.5,6.7,4.1,4.2,2.92,Low +935,5.1,2.8,6.6,0.3,9.2,2.49,Low +936,6.9,0.3,5.7,1.8,9.3,3.15,High +937,5.4,3.6,5,2.9,7.1,2.74,High +938,9.6,0.6,9.8,0.8,3.2,3.29,High +939,8.7,2.2,9.4,2,1.7,3.03,High +940,5.8,3.7,6.6,2.2,5.7,2.9,Low +941,8.8,1.4,9.8,3,1,3.51,High +942,5.2,1,7.3,1.4,9.1,2.83,Low +943,8.7,3.7,7.1,1.5,3,3.29,High +944,7.4,1.4,9.5,3.2,2.5,3.22,Moderate +945,8.8,3.2,6.7,2.3,3,3.24,High +946,9,3.8,8.1,2.3,0.8,3.55,High +947,9,3.4,7,0.2,4.4,3.68,High +948,7.3,3,6.8,3.8,3.1,2.91,Moderate +949,5.9,3,7.7,1.2,6.2,3.09,Low +950,7.4,0.9,9.8,4.2,1.7,2.94,Moderate +951,9.8,1.7,7.4,4.6,0.5,3.84,High +952,6.3,1.8,5.6,1.2,9.1,2.99,High +953,5,0.2,9.9,1.5,7.4,2.94,Low +954,7.8,0.6,8.6,3.6,3.4,3.26,Moderate +955,8.7,3.1,9.9,1.3,1,3.55,High +956,5.3,3.6,5.6,2,7.5,2.53,High +957,9.1,2.4,7,2.6,2.9,3.28,High +958,9.3,0.4,8.9,4.6,0.8,3.58,High +959,5.9,1.7,5.8,4.2,6.4,3.32,High +960,6,0.8,5.2,1.9,10.1,3.01,High +961,7.8,3.4,8.3,2,2.5,3.18,Moderate +962,6.3,0.2,8.6,0.7,8.2,3.1,Moderate +963,6.5,2.1,7.8,3.6,4,2.9,Moderate +964,8.1,3.9,8.6,3.1,0.3,2.99,High +965,8.8,2.4,6,4,2.8,3.59,High +966,7.4,2.1,6.7,3.1,4.7,3.44,Moderate +967,6,3.2,5.9,0.5,8.4,3.28,High +968,7.2,1.1,7.8,2.1,5.8,2.93,Moderate +969,9.7,3.7,7.5,1,2.1,3.04,High +970,9.6,0,7.8,4.4,2.2,3.38,High +971,7.4,0.3,9.9,3.1,3.3,2.84,Moderate +972,7.4,1.7,5.4,0.6,8.9,3.23,High +973,9.2,1,6,3,4.8,3.18,High +974,5.2,0.2,9.2,0.7,8.7,2.82,Low +975,5.2,1.8,9.2,1.6,6.2,2.68,Low +976,7.2,2.3,7.9,2,4.6,3.06,Moderate +977,6.6,0.4,6.8,0.6,9.6,3.31,Moderate +978,6.4,2.5,7.3,2.9,4.9,3.12,Moderate +979,8.8,1.1,6.6,5.5,2,3.32,High +980,9.6,2.4,7.7,1.1,3.2,3.3,High +981,6.7,3.4,7.8,3.1,3,2.98,Moderate +982,8,0.3,8.4,5.6,1.7,3.28,Moderate +983,7.9,0.5,7.9,4.6,3.1,3.38,Moderate +984,8.2,3.6,8.1,0.5,3.6,3.18,High +985,6.5,0.8,9.5,4.6,2.6,2.74,Moderate +986,5.9,3,7.4,1.4,6.3,3.1,Low +987,8.1,0.2,6.6,2.8,6.3,3.14,High +988,6,3.1,7.1,3.4,4.4,2.84,Moderate +989,5.1,0.1,7.2,4.9,6.7,2.94,Low +990,6.9,3.3,5.7,5.6,2.5,3.05,High +991,8.8,3.8,8.4,1.1,1.9,3.3,High +992,6.7,2.8,8.8,5.3,0.4,3.05,Moderate +993,6,3.2,8.7,0.4,5.7,2.6,Moderate +994,6.5,3.9,8.2,3.9,1.5,2.82,Moderate +995,9.9,1.5,9,1.6,2,3.44,High +996,9.7,0.9,6.6,4.5,2.3,3.5,High +997,7,2.4,7.2,4.5,2.9,3,Moderate +998,5.8,1.4,7,0.3,9.5,2.49,Low +999,7.9,3.5,5.8,3.6,3.2,3.01,High +1000,8.5,1.6,7.5,0,6.4,3.63,High +1001,8.5,2.6,5.2,2.2,5.5,3.26,High +1002,7.5,3.6,8.6,2.5,1.8,3.19,Moderate +1003,9,3.5,7.3,2,2.2,3.43,High +1004,8.5,0.3,9.3,2.8,3.1,3.26,High +1005,5.3,2.2,7.1,5.3,4.1,2.9,Low +1006,7.8,0.2,9.9,3.1,3,3.07,Moderate +1007,6.5,1.9,9.3,1.8,4.5,2.92,Moderate +1008,6.5,3.1,7.4,1.4,5.6,2.93,Moderate +1009,5.8,1.3,9.7,2.1,5.1,2.87,Low +1010,5.9,3.6,7.3,4.3,2.9,2.95,Low +1011,9.9,0.2,5.5,4.3,4.1,3.32,High +1012,5.2,0.1,8.9,0.8,9,2.66,Low +1013,7.3,2.4,7.1,0.2,7,3.17,Moderate +1014,7.2,2.1,7.4,2.3,5,3.13,Moderate +1015,9.4,3.6,6.7,2.6,1.7,2.81,High +1016,6.4,3.8,5.7,3.5,4.6,3.07,High +1017,6.4,1.1,7,6,3.5,2.98,Moderate +1018,5.4,0.6,7.2,3.1,7.7,2.68,Low +1019,6.3,1.3,5.4,1.8,9.2,3.1,High +1020,9.5,0,9.1,5.1,0.3,3.05,High +1021,5.5,0.6,9.8,3.2,4.9,3.2,Low +1022,8.7,4,6.4,2.6,2.3,3.21,High +1023,7.7,1.6,5.8,5.9,3,3.15,High +1024,8,0.9,7.7,4.2,3.2,3.44,Moderate +1025,7.6,4,8.1,1.6,2.7,3.02,Moderate +1026,6.9,1.4,7.2,4.7,3.8,3.14,Moderate +1027,7.4,3.2,7.9,1.9,3.6,2.99,Moderate +1028,6.1,2,6.3,0.1,9.5,3.05,Moderate +1029,8.2,2,7.2,5.8,0.8,3.45,High +1030,5.7,2.3,9.3,3.5,3.2,2.9,Low +1031,8.6,1.5,5.5,2.7,5.7,3.49,High +1032,6.2,3.9,9.8,1,3.1,2.87,Moderate +1033,6.7,3.6,9.8,1.7,2.2,3.06,Moderate +1034,8.4,1.1,8.7,0.3,5.5,2.86,High +1035,5.2,1.5,6.8,1.9,8.6,2.38,Low +1036,6,1.2,9.9,2.5,4.4,2.88,Moderate +1037,7.2,2.3,9.9,1.1,3.5,3.31,Moderate +1038,8,0.4,8.4,0.4,6.8,3.39,Moderate +1039,8,3,6.1,5,1.9,2.9,Moderate +1040,5.7,3.8,5.4,1.2,7.9,2.81,High +1041,6.7,2.5,7.7,0.8,6.3,2.81,Moderate +1042,6.1,1.6,8.5,1.3,6.5,2.76,Moderate +1043,6.8,1.6,9.9,5.4,0.3,2.89,Moderate +1044,5.3,1.3,6.3,3,8.1,2.94,Low +1045,8.9,3.4,9.2,0.9,1.6,3.11,High +1046,5.3,2.8,5,2.5,8.4,3.02,High +1047,6.6,2.8,8.8,1.8,4,2.87,Moderate +1048,7.2,2.9,8.5,5.3,0.1,3.26,Moderate +1049,6.1,2.6,8,5.5,1.8,3.01,Moderate +1050,7.8,1.1,7.4,2,5.7,3.04,Moderate +1051,7.9,3.6,7.8,3,1.7,3.05,Moderate +1052,6.2,2,6.6,1.1,8.1,2.94,Moderate +1053,7.5,1.3,6.3,2.8,6.1,3.21,Moderate +1054,5.5,3.1,9,4.6,1.8,2.97,Low +1055,5.6,2.6,9.2,3.5,3.1,2.72,Low +1056,7.6,0.1,8.2,0.5,7.6,3.56,Moderate +1057,7.2,1.2,7.7,0.8,7.1,3.28,Moderate +1058,5.8,0.4,5.7,5.3,6.8,3,High +1059,7.6,1.9,5.5,3.9,5.1,3.17,High +1060,8.1,0.3,5.6,0.3,9.7,3.25,High +1061,6.3,0.5,6.3,2.3,8.6,2.97,Moderate +1062,9.2,2.8,5.6,4.4,2,3.5,High +1063,6.4,2.6,6.7,6,2.3,2.78,Moderate +1064,9.7,0.1,8.5,4.1,1.6,3.26,High +1065,9.2,3.9,9.9,0.1,0.9,3.48,High +1066,8.2,0.5,8.3,5.9,1.1,3.44,High +1067,9.6,1.8,5.2,2.2,5.2,3.55,High +1068,7.3,0.2,7.1,2.8,6.6,3.27,Moderate +1069,9.6,2.6,6.6,2.7,2.5,3.37,High +1070,6.8,2.7,8.3,4.3,1.9,2.58,Moderate +1071,6.3,1.3,5.6,3.9,6.9,2.97,High +1072,9.3,3.6,7.2,1.8,2.1,3.3,High +1073,5.4,2.7,9.1,1.5,5.3,3.04,Low +1074,9.4,1,7.8,1.1,4.7,3.36,High +1075,5.5,3.6,9.1,4.4,1.4,2.44,Low +1076,7.7,0.4,8.8,3.5,3.6,3,Moderate +1077,5.9,0.8,5.9,0.3,11.1,3.11,High +1078,5.1,0.2,7.9,4.9,5.9,2.82,Low +1079,6.6,1.4,8,1.6,6.4,3.23,Moderate +1080,8.7,2.7,6,2.1,4.5,3.67,High +1081,5.6,0.5,8.4,5.2,4.3,2.86,Low +1082,5.9,0.4,9.1,3.5,5.1,2.96,Low +1083,8.1,3.1,8.5,3.6,0.7,3.12,High +1084,8.2,1.3,9.8,0.2,4.5,3.38,High +1085,7.9,0.7,8.6,1.1,5.7,3.18,Moderate +1086,9.6,0.8,5.7,4.6,3.3,3.12,High +1087,7.5,3.6,5.7,3.9,3.3,3.01,High +1088,8.4,2.4,8.8,1.4,3,3.17,High +1089,7.2,1.6,9.9,1.5,3.8,2.89,Moderate +1090,7.8,1,9.6,1.5,4.1,2.9,Moderate +1091,9.5,0.4,8.3,5.3,0.5,3.56,High +1092,8.4,1.2,5.9,1.8,6.7,3.25,High +1093,5.5,0.6,5.5,2.5,9.9,2.74,High +1094,5.7,2.6,6,0.6,9.1,2.92,Low +1095,5.8,3.7,9.1,1.9,3.5,2.97,Low +1096,8.4,2.7,8.1,1.3,3.5,3.68,High +1097,5.2,1.8,9.5,3.4,4.1,2.88,Low +1098,8.4,3.9,9.9,1.2,0.6,3.08,High +1099,6.2,3.2,5.5,4.7,4.4,2.89,High +1100,8.2,1.7,7.2,1.9,5,3.38,High +1101,8.8,3.7,9.7,0.3,1.5,3.39,High +1102,6.3,0.3,6.3,5.5,5.6,3.06,Moderate +1103,8.2,2.9,6.3,4.3,2.3,3.21,High +1104,8.1,0.6,9.1,1.4,4.8,3.15,High +1105,8.3,1.6,8,0.6,5.5,3.4,High +1106,10,0.8,6.3,4,2.9,3.39,High +1107,9.8,3.7,7.5,2.4,0.6,3.35,High +1108,6.4,3.3,6.9,0.5,6.9,2.9,Moderate +1109,6.7,3.9,8.1,2.2,3.1,2.89,Moderate +1110,5.4,0.2,5.6,3.5,9.3,2.98,High +1111,9.6,2,9.2,1.4,1.8,3.64,High +1112,5.9,1.4,8.2,0.4,8.1,3.07,Low +1113,6.8,2.1,10,2.4,2.7,2.96,Moderate +1114,9,2.4,9.4,1.3,1.9,3.61,High +1115,8,2.5,7.1,0.9,5.5,3.13,Moderate +1116,6.1,2.9,6.6,3,5.4,3.01,Moderate +1117,5.8,3.8,9.3,4.4,0.7,3.16,Low +1118,5.7,0,5.1,3.5,9.7,2.75,High +1119,7.3,2.1,5,2.5,7.1,3,High +1120,8.7,0.9,9.1,3.1,2.2,3.65,High +1121,6.1,0.9,8.1,5,3.9,2.61,Moderate +1122,9.3,2.7,7.2,2.3,2.5,3.29,High +1123,6,2.5,6.8,6,2.7,2.5,Moderate +1124,7.8,3.7,9,1.6,1.9,2.6,Moderate +1125,8.6,2.3,7.5,1.1,4.5,2.97,High +1126,9.6,1.3,9.8,1.8,1.5,3.39,High +1127,8.2,2.2,5.6,2.3,5.7,3.28,High +1128,7.2,3.1,6.1,1,6.6,2.92,Moderate +1129,7,3.7,8.6,2,2.7,2.88,Moderate +1130,9.9,2.7,6.4,2.9,2.1,3.49,High +1131,5.5,3.9,5.9,3.9,4.8,2.99,High +1132,8.9,2.7,8.1,3.8,0.5,3.14,High +1133,5.4,1.3,6.2,5.9,5.2,3.1,Low +1134,8.4,0.8,6.2,1.7,6.9,3.12,High +1135,7.1,0.9,5.1,5.3,5.6,3.05,High +1136,6.7,0,8.4,5,3.9,3.05,Moderate +1137,5.7,0.6,9,3.7,5,2.88,Low +1138,6.5,1.5,8.8,4.9,2.3,2.88,Moderate +1139,7,3.8,7,4.6,1.6,3.24,Moderate +1140,9.5,0.3,9.7,3.7,0.8,3.42,High +1141,9,0.8,9,4.4,0.8,3.37,High +1142,5.2,0.6,7.7,3.5,7,2.77,Low +1143,8.2,0.1,9.8,0.3,5.6,3.37,High +1144,8.3,3.3,5.1,3.3,4,3.27,High +1145,7.3,2,5.4,4.1,5.2,3.41,High +1146,7.4,0.6,8.2,1,6.8,3.11,Moderate +1147,9.4,2.5,5.8,5.8,0.5,3.25,High +1148,8.1,1,9,4.8,1.1,3.22,High +1149,9.9,2,7.3,3.6,1.2,3.51,High +1150,7.7,0.4,7.1,5.1,3.7,2.94,Moderate +1151,9.3,0.4,5.5,1.6,7.2,3.29,High +1152,8.1,1.4,8.9,1.3,4.3,3.27,High +1153,8.2,0.9,8.6,5.2,1.1,3.03,High +1154,7.1,0.6,8.5,4.6,3.2,3.11,Moderate +1155,5.5,2,9.1,5.6,1.8,2.95,Low +1156,7.7,1.6,9.2,2.7,2.8,3.16,Moderate +1157,7.4,2,9.2,4.5,0.9,2.77,Moderate +1158,7.5,2.3,6.2,4.8,3.2,2.93,Moderate +1159,7.4,1.3,5.5,1.4,8.4,3.09,High +1160,5.8,1.8,6.5,0.2,9.7,2.92,Low +1161,6.6,2.2,7.8,2.1,5.3,3.09,Moderate +1162,6.9,1,6.2,2.7,7.2,3.02,Moderate +1163,8.8,0.8,8.5,0.1,5.8,3.61,High +1164,6.7,2.3,6,4.5,4.5,2.92,Moderate +1165,5.3,3.4,6,5.2,4.1,3.06,Low +1166,6.6,3.6,5.6,1.1,7.1,2.82,High +1167,7.5,0.3,6,5.7,4.5,3.11,Moderate +1168,9.6,2.2,6.3,4.1,1.8,3.49,High +1169,8.3,4,6.3,3.6,1.8,3.36,High +1170,7.5,1.2,5.8,1.7,7.8,3.25,High +1171,6.9,3,7.7,0.5,5.9,3.17,Moderate +1172,8.2,3.2,7.3,1.9,3.4,3.2,High +1173,5.5,3.5,8.9,1,5.1,2.3,Low +1174,8.1,3.8,7.9,2.3,1.9,3.72,High +1175,5.3,0.3,5.9,0.2,12.3,2.97,High +1176,5.7,3.3,5.8,1.8,7.4,3.04,High +1177,6.2,1.5,6.3,2.9,7.1,2.97,Moderate +1178,5.3,0.6,5.3,3.8,9,2.79,High +1179,5.3,3.3,7.6,3.2,4.6,2.55,Low +1180,6,1.3,8,1.3,7.4,2.95,Moderate +1181,5.6,3.9,5.1,4.8,4.6,2.7,High +1182,5.7,0.6,8.5,3.9,5.3,3.05,Low +1183,8.9,3.7,8.5,0.5,2.4,3.46,High +1184,6,0.3,8.5,2.4,6.8,2.81,Moderate +1185,9.6,2.6,5.5,5.7,0.6,3.28,High +1186,7,0.2,7.5,0.7,8.6,2.81,Moderate +1187,7,1.4,8.9,4.8,1.9,2.97,Moderate +1188,6.9,0.6,9,4.2,3.3,2.83,Moderate +1189,6,1.5,5.5,3.8,7.2,2.8,High +1190,7.9,3.6,7.8,0.8,3.9,3.45,Moderate +1191,6.9,3.4,8.2,3.6,1.9,3.37,Moderate +1192,8.8,2.4,5.8,4.8,2.2,3.38,High +1193,8.6,0.3,7.3,1,6.8,3.51,High +1194,8.1,2.7,9.2,0.9,3.1,2.78,High +1195,5.6,3.4,5.8,5.8,3.4,2.84,High +1196,9.9,0.4,6.5,3.8,3.4,3.73,High +1197,6.8,3.7,5.3,3.3,4.9,3.37,High +1198,6.3,1.5,9.2,1.2,5.8,3.15,Moderate +1199,9.1,2.3,8.8,2.7,1.1,3.43,High +1200,9.3,1.7,9.8,1.4,1.8,3.12,High +1201,5.7,1.6,9.8,1.9,5,2.72,Low +1202,8.6,1.2,8.9,2.3,3,3.24,High +1203,7.4,3.1,6.9,2.7,3.9,2.82,Moderate +1204,7.6,3.2,6.8,3.1,3.3,2.87,Moderate +1205,8.4,1.1,6.4,5.6,2.5,3.37,High +1206,8.2,0.1,8.1,3.1,4.5,3.56,High +1207,7.7,1.4,5.4,1.2,8.3,3.13,High +1208,7.3,0.2,5.2,4.3,7,3.21,High +1209,7.7,2,6.2,4.5,3.6,3.07,Moderate +1210,7.3,1.1,6.2,3.9,5.5,3,Moderate +1211,8.3,3.3,7.1,0.4,4.9,3.56,High +1212,5,2.1,5.2,3.4,8.3,2.9,High +1213,9.6,3.9,7.7,1.3,1.5,3.47,High +1214,5.3,1.9,6.2,2.8,7.8,2.87,Low +1215,7.3,2.3,6.8,1,6.6,3.35,Moderate +1216,8.3,1.4,9.7,4.2,0.4,3.25,High +1217,6,0.2,8.7,5,4.1,3.04,Moderate +1218,5.1,1,7.3,3.8,6.8,3.24,Low +1219,7.8,3,6.4,3.4,3.4,3.14,Moderate +1220,8.8,2.8,10,0.7,1.7,3.16,High +1221,7.5,1.3,7.2,5.1,2.9,3.27,Moderate +1222,6,3.5,5.3,5.3,3.9,2.97,High +1223,6.6,1.3,7.6,5.6,2.9,2.96,Moderate +1224,9.3,1.6,6,2.5,4.6,3.31,High +1225,6.9,3.7,8.8,2.3,2.3,3.03,Moderate +1226,5.3,1,7.2,0.9,9.6,2.85,Low +1227,9.7,3.1,6.3,2.9,2,3.5,High +1228,9.4,2.1,8.9,2,1.6,3.43,High +1229,7.8,0.5,5.6,3.2,6.9,3.36,High +1230,9.8,1.9,5.3,3.3,3.7,3.93,High +1231,9.2,4,7.2,1.2,2.4,3.1,High +1232,5.2,1.4,6.3,4.1,7,3.12,Low +1233,9.7,1.1,9.1,0.2,3.9,3.3,High +1234,9.7,3.1,8.3,2.4,0.5,3.47,High +1235,8.2,3.9,8.6,3.1,0.2,3.02,High +1236,7.6,0.5,8,2.9,5,3.15,Moderate +1237,8.1,0,6,2.9,7,3.19,High +1238,7.1,2.9,8,1.8,4.2,3.17,Moderate +1239,7.1,0.9,9.8,0.8,5.4,3.01,Moderate +1240,6.1,3.1,6,0.5,8.3,2.9,Moderate +1241,7.4,0,5.4,4.8,6.4,3.14,High +1242,9.3,2.7,5.3,4.7,2,3.41,High +1243,9.2,3.2,7.5,1,3.1,3.48,High +1244,9.9,0.6,6.1,1.3,6.1,3.63,High +1245,9,0.7,5.3,6,3,3.56,High +1246,7.8,3.6,9.6,0,3,3.09,Moderate +1247,5.4,1,8.3,5.3,4,3.27,Low +1248,5.9,3.2,9.8,1.4,3.7,2.71,Low +1249,7.5,0.3,7.8,3,5.4,3.09,Moderate +1250,6.7,2.1,7.9,0.1,7.2,2.78,Moderate +1251,8.8,2.9,6.8,0.3,5.2,3.17,High +1252,5.9,2.3,5.8,2.1,7.9,2.66,High +1253,8.5,2.2,6.9,2.5,3.9,3.25,High +1254,5.4,3.5,5.4,4.2,5.5,2.81,High +1255,9.6,1.1,6.9,3.4,3,3.37,High +1256,8.3,1.6,7.4,0.3,6.4,3.29,High +1257,6,3.2,7.3,1.8,5.7,3.11,Moderate +1258,8.7,1.1,5.6,1.5,7.1,3.24,High +1259,9.6,2.3,7.7,2.6,1.8,3.67,High +1260,7.6,0.5,5.6,3.2,7.1,3.04,High +1261,9.7,1.2,9.3,2.9,0.9,3.51,High +1262,6,1.5,7.5,4.4,4.6,2.8,Moderate +1263,5.6,1.6,7.4,3.2,6.2,2.75,Low +1264,9,2.8,7.8,3.1,1.3,3.43,High +1265,7.1,0.6,8.3,3.1,4.9,2.79,Moderate +1266,9.5,2.3,5.4,2.7,4.1,3.67,High +1267,8.8,3.2,7.5,4,0.5,3.2,High +1268,9.5,3.6,8.4,2.1,0.4,3.11,High +1269,5.4,3.5,6.6,1.1,7.4,2.72,Low +1270,6.3,1.3,5.7,1.8,8.9,2.65,High +1271,7.9,1.8,6.7,4.5,3.1,3.24,Moderate +1272,6.7,3,5.8,0.8,7.7,3.09,High +1273,6.7,3.2,6.2,0.4,7.5,2.74,Moderate +1274,7.8,2.1,8.3,1.4,4.4,3.31,Moderate +1275,9.3,1.2,8.5,0.1,4.9,3.1,High +1276,7.7,0.3,9,1.3,5.7,2.9,Moderate +1277,8.4,3.2,7.8,3.4,1.2,3.02,High +1278,9,1.2,7.9,4.4,1.5,3.62,High +1279,6.9,1.2,7.3,4.9,3.7,3.05,Moderate +1280,8.3,3.6,5.5,1.4,5.2,3.4,High +1281,8.5,3.3,9.3,1.2,1.7,3.25,High +1282,6.2,1.2,8.9,0.5,7.2,2.76,Moderate +1283,9.1,1.7,8,0.5,4.7,3.23,High +1284,9.8,3.2,7.3,0.8,2.9,3.42,High +1285,9.7,1.4,5.8,3.4,3.7,3.67,High +1286,7.4,4,8.4,0.3,3.9,3.15,Moderate +1287,10,1.6,6.4,3.3,2.7,3.39,High +1288,5,1.8,9.2,3.4,4.6,2.7,Low +1289,10,1.1,6.4,1,5.5,3.4,High +1290,9,3.6,9.9,0.3,1.2,3.19,High +1291,9.4,1.3,5.6,5.2,2.5,3.2,High +1292,7.1,1.1,8.7,2.7,4.4,3.15,Moderate +1293,9.9,0.2,6.8,2.9,4.2,3.09,High +1294,8.6,3.5,9.7,1.8,0.4,3.3,High +1295,9.3,2.2,9.1,1,2.4,3.07,High +1296,7.3,1.1,9.8,1.8,4,2.91,Moderate +1297,5.5,2.1,5.3,0.7,10.4,2.79,High +1298,7.2,3.2,8.7,2.1,2.8,2.78,Moderate +1299,6.7,1.3,8.9,0.3,6.8,2.79,Moderate +1300,6.2,3.7,9.3,3.4,1.4,2.92,Moderate +1301,7.4,2.1,9.9,4.4,0.2,3.23,Moderate +1302,6,0.9,8.4,2.4,6.3,2.79,Moderate +1303,9.7,0.4,7.6,5.5,0.8,3.73,High +1304,5.8,3.9,9.6,0.8,3.9,2.57,Low +1305,5.6,0.3,9.5,1.2,7.4,2.57,Low +1306,8,0.3,6.1,5.6,4,2.76,Moderate +1307,9.5,3.1,5.1,2,4.3,3.14,High +1308,9.5,2.5,5.4,5.5,1.1,3.59,High +1309,9.8,0.3,7.7,1.8,4.4,3.23,High +1310,7.9,3.8,7.5,0.4,4.4,3.11,Moderate +1311,8.1,1.4,9.3,2.3,2.9,3.11,High +1312,8.8,1.1,8.8,1.1,4.2,3.22,High +1313,6.6,1.9,9.7,5.4,0.4,2.88,Moderate +1314,5.7,2,7.3,5.4,3.6,2.62,Low +1315,9.7,1.5,7.5,4.8,0.5,3.3,High +1316,6.1,0.8,5.2,3.9,8,2.56,High +1317,6.3,0.2,6.2,4.8,6.5,2.93,Moderate +1318,7.1,3.9,6,1.3,5.7,3.3,Moderate +1319,6.5,0.7,6.9,5.5,4.4,2.71,Moderate +1320,9.7,0.2,6.1,3.4,4.6,3.81,High +1321,8.1,0.2,7,3.9,4.8,3.41,High +1322,6.6,0.4,7.1,0.8,9.1,3.27,Moderate +1323,9.7,1.9,6.6,4.4,1.4,3.06,High +1324,9.1,3.5,8.4,0.1,2.9,3.36,High +1325,7.8,3.1,5.7,1.4,6,3.14,High +1326,7.2,0,9.1,2.2,5.5,3.41,Moderate +1327,7.7,2.7,8.5,4.9,0.2,2.68,Moderate +1328,9.8,2.6,6.5,0.6,4.5,3.62,High +1329,9.2,1.4,8.3,2.4,2.7,3.47,High +1330,5.3,1.7,7.7,2.6,6.7,2.54,Low +1331,8.7,3.3,8.9,0.1,3,3.34,High +1332,9.7,3.3,9.2,0.5,1.3,3.18,High +1333,7.1,1.9,5.8,0.2,9,3.02,High +1334,9.6,2.3,8.3,3.5,0.3,3.41,High +1335,6.7,2.5,5.2,1.1,8.5,3.11,High +1336,6.8,1.5,7.7,0,8,3.15,Moderate +1337,6.2,0.8,6.3,4.8,5.9,2.76,Moderate +1338,7.5,3.5,6.2,0.5,6.3,3,Moderate +1339,6.8,3,7.8,4.9,1.5,2.99,Moderate +1340,5.2,3.9,6.9,0.9,7.1,3.28,Low +1341,8.3,1.1,7.9,3.5,3.2,3.49,High +1342,6.3,1.8,7.7,4,4.2,2.91,Moderate +1343,8.9,1.6,8.2,0.8,4.5,3.3,High +1344,8.6,0.1,6,2.9,6.4,3.42,High +1345,9.4,2.1,9.6,1.4,1.5,3.2,High +1346,9,1,9.5,4.1,0.4,3.34,High +1347,9.7,2.1,8.4,3,0.8,3.51,High +1348,5.2,2,5.8,1.1,9.9,2.58,High +1349,6.8,1.7,8.1,0.4,7,2.75,Moderate +1350,7.9,2.5,7.8,4.3,1.5,3.19,Moderate +1351,6.7,3.1,7.2,2.9,4.1,3.24,Moderate +1352,6.5,0.3,5.5,5.5,6.2,3.28,High +1353,8.4,0.5,6.8,3.6,4.7,3.34,High +1354,5,0.8,9.8,3.7,4.7,2.69,Low +1355,6.3,0.3,5.1,1.5,10.8,2.9,High +1356,8.6,3.7,7,0.9,3.8,3.48,High +1357,7.6,3.6,9,0.3,3.5,3.27,Moderate +1358,9.5,0.5,7.7,5.3,1,3.78,High +1359,7.1,1.9,5.4,1.7,7.9,3.14,High +1360,6.4,1.8,8.4,1,6.4,2.93,Moderate +1361,7.4,3,9.3,2.7,1.6,2.95,Moderate +1362,9.7,0.5,8.9,1.3,3.6,3.53,High +1363,9.7,2.9,8.8,0.6,2,3.87,High +1364,8.8,0.4,9.8,4.5,0.5,3.12,High +1365,6.4,3.3,7.6,2.8,3.9,3.11,Moderate +1366,8.6,1.6,8.1,4,1.7,2.94,High +1367,8.6,0.2,9.3,2.7,3.2,3.11,High +1368,7.4,3.5,6.9,4.5,1.7,2.95,Moderate +1369,5.5,1.9,10,4.6,2,2.83,Low +1370,6.2,1.6,8.9,4.6,2.7,2.63,Moderate +1371,6.1,3.7,8,2.3,3.9,3.41,Moderate +1372,7.8,1.9,7.5,1.1,5.7,3.18,Moderate +1373,9.1,2.2,5.7,4.6,2.4,3.17,High +1374,7.6,0.5,9.7,1.1,5.1,3.07,Moderate +1375,6.3,1.6,6.9,4.8,4.4,2.69,Moderate +1376,6.3,2,5.7,3.7,6.3,2.91,High +1377,7.8,2.9,9.7,3.3,0.3,3.09,Moderate +1378,9.5,3.9,9.3,0.1,1.2,3.28,High +1379,9.7,1.7,5,2.7,4.9,3.47,High +1380,6.7,1.9,8.1,5.2,2.1,2.88,Moderate +1381,8.3,1.7,9.1,4.4,0.5,3.26,High +1382,6.4,0.2,8.3,5.2,3.9,2.75,Moderate +1383,5.8,3.2,9.3,5.2,0.5,2.96,Low +1384,6.6,2.2,5.3,0.3,9.6,2.94,High +1385,8.6,1.8,6.3,1.1,6.2,3.2,High +1386,7.4,1.4,6.6,5.8,2.8,2.87,Moderate +1387,8.2,0.1,7.2,5.3,3.2,3.12,High +1388,8.8,2.4,7.9,0.3,4.6,3.26,High +1389,5.7,2.5,6,3,6.8,2.5,Low +1390,9.7,3.4,8.6,0.2,2.1,3.53,High +1391,5.5,2,5.8,5.9,4.8,2.82,High +1392,6.8,2.6,5.6,2.6,6.4,2.77,High +1393,6.4,3.6,5.2,5.5,3.3,2.86,High +1394,8.9,0.1,9.8,2.7,2.5,3.51,High +1395,6.5,1.5,5.3,5.9,4.8,3,High +1396,7.2,3.8,6.2,3.2,3.6,3.02,Moderate +1397,7.4,2.8,5.3,1.2,7.3,3.25,High +1398,5.9,2.3,6.1,5.2,4.5,2.72,Low +1399,9.7,2.1,6.8,1.3,4.1,3.55,High +1400,9.7,1.6,8.5,2.1,2.1,3.87,High +1401,7.6,1.1,7.3,2.8,5.2,3.2,Moderate +1402,6.6,0.2,7.5,3.3,6.4,3.02,Moderate +1403,5.8,3,9.9,5,0.3,2.93,Low +1404,8.5,1.8,7.7,5.1,0.9,3.23,High +1405,7.4,1.5,7.5,3.5,4.1,3.33,Moderate +1406,5.5,2.4,5.6,0.5,10,3.11,High +1407,7.6,1.6,7.9,0.5,6.4,2.89,Moderate +1408,9.9,2.2,8.4,1.1,2.4,3.43,High +1409,5.5,3.9,6.4,2.5,5.7,2.8,Low +1410,9.1,2.1,6.4,0.4,6,3.37,High +1411,5.8,3.6,8.4,1.5,4.7,2.91,Low +1412,7.9,1.6,6.8,1.3,6.4,3.1,Moderate +1413,8.3,3.9,5.9,3.5,2.4,2.95,High +1414,6.3,3.3,7.4,3.3,3.7,2.52,Moderate +1415,6.5,0.7,5.4,4.3,7.1,3.1,High +1416,7,1.7,7.3,2.2,5.8,2.85,Moderate +1417,5.5,1.2,8.3,4,5,2.76,Low +1418,6,0.8,5.1,5.4,6.7,2.54,High +1419,6.1,0.9,6.4,0.8,9.8,2.79,Moderate +1420,5.7,2.6,6.7,4.2,4.8,2.9,Low +1421,7.8,1,8.3,0.7,6.2,2.69,Moderate +1422,6.3,2.4,9.4,5.9,0,3.22,Moderate +1423,8,1.6,6.1,1.5,6.8,2.75,Moderate +1424,9.6,1.5,6.9,2.3,3.7,3.37,High +1425,9.2,2.6,8.1,1.4,2.7,3.39,High +1426,7,2,8.3,0.1,6.6,3.27,Moderate +1427,9.4,1.8,6.7,0.8,5.3,3.37,High +1428,7,2.7,7.1,5.8,1.4,2.47,Moderate +1429,8,3.2,5.5,2.4,4.9,3.36,High +1430,9.3,0.3,5.4,5.1,3.9,3.02,High +1431,6.1,2.7,7.7,5,2.5,3.04,Moderate +1432,7.1,1.3,8,5.6,2,3.08,Moderate +1433,9.2,4,5.1,0.6,5.1,3.62,High +1434,6.4,1,8.9,0.3,7.4,3.04,Moderate +1435,6.8,2,7.8,4.4,3,3.27,Moderate +1436,7.9,2.2,8.2,1.5,4.2,2.87,Moderate +1437,5.4,0.5,6.1,3,9,2.91,Low +1438,8.9,1.4,7,2.4,4.3,3.5,High +1439,6,0.2,8,5.9,3.9,2.76,Moderate +1440,9.1,2.8,9.7,1,1.4,3.53,High +1441,8.3,1.9,8.2,2.5,3.1,3.25,High +1442,7.6,3.2,8.7,3,1.5,2.86,Moderate +1443,5.6,2.9,7.5,5.4,2.6,2.98,Low +1444,5.7,3,5,1,9.3,2.42,High +1445,7.9,2.9,9.6,2.5,1.1,2.99,Moderate +1446,5,0.5,7.7,4.1,6.7,3.07,Low +1447,7.1,2.9,7.6,0.4,6,3.15,Moderate +1448,8.6,3.6,5.6,5.9,0.3,3.21,High +1449,6,0,10,1.7,6.3,2.7,Moderate +1450,7.9,3.6,6.6,4,1.9,3.29,Moderate +1451,5.9,2.5,6.7,1.3,7.6,2.7,Low +1452,9.5,1.6,6.2,2.7,4,3.32,High +1453,6.6,3,9.9,2,2.5,3.03,Moderate +1454,5.8,2.8,7.6,3.9,3.9,3.09,Low +1455,9.4,1.8,9.5,2.5,0.8,3.91,High +1456,6.6,3.9,8.3,0.2,5,2.93,Moderate +1457,6.6,2.5,5.3,0.1,9.5,2.6,High +1458,7.2,1.1,5.8,4.1,5.8,2.96,High +1459,7.6,0.8,6.6,3.6,5.4,3.3,Moderate +1460,8.6,2.7,7.4,3.4,1.9,3.45,High +1461,5.2,2.5,8.9,3,4.4,2.51,Low +1462,8.2,2.8,9.4,1.2,2.4,3.06,High +1463,8.8,2.2,9.4,1.9,1.7,3.85,High +1464,8.7,3.9,5.4,0.3,5.7,3.42,High +1465,9.7,2.1,8.1,2,2.1,3.49,High +1466,8.7,1.2,6.5,5,2.6,3.25,High +1467,5.4,3.5,6.3,3.6,5.2,2.85,Low +1468,7.1,2.8,6.7,1.7,5.7,3.16,Moderate +1469,10,3,8.2,1,1.8,3.81,High +1470,7.7,3.4,5.2,2.2,5.5,3.22,High +1471,6.2,1.8,5.4,5.7,4.9,2.98,High +1472,7.8,3.7,5,4.5,3,3.16,High +1473,9.5,0.6,5.5,2.5,5.9,3.44,High +1474,7.6,0.6,5,4.9,5.9,3.29,High +1475,5.4,2.5,9.6,1.3,5.2,2.69,Low +1476,8,0.7,8.7,1.8,4.8,3.25,Moderate +1477,7.3,2.4,5.9,4.4,4,3.3,High +1478,5.8,2.8,5.6,2.6,7.2,2.62,High +1479,6.2,3,6.3,5.3,3.2,2.91,Moderate +1480,8.1,0.4,7,4.3,4.2,3.24,High +1481,8.3,2.5,6.4,2.3,4.5,3.31,High +1482,7.5,2.8,6.2,1.9,5.6,3.02,Moderate +1483,6.7,0.1,6.7,4.8,5.7,3.01,Moderate +1484,7.3,0.1,9.4,0.1,7.1,3.29,Moderate +1485,9.7,2,6.7,5.2,0.4,3.47,High +1486,7.7,0.9,7.1,3.9,4.4,3.08,Moderate +1487,8.6,0,9.7,0.9,4.8,3.14,High +1488,5.2,0.5,9.9,1.9,6.5,2.61,Low +1489,5.6,0.4,8.6,5.1,4.3,2.81,Low +1490,6.1,2.1,6.3,5.6,3.9,2.73,Moderate +1491,9.5,2.3,6.8,2.1,3.3,3.74,High +1492,7.3,3.4,9.7,1.2,2.4,2.97,Moderate +1493,7.8,0.4,6,2.5,7.3,3.24,Moderate +1494,5.8,1.8,8,4.2,4.2,2.82,Low +1495,6.9,3.5,7.8,2.5,3.3,3.02,Moderate +1496,9.1,2.5,9.2,1.6,1.6,3.22,High +1497,5.6,0.1,6.5,4.2,7.6,2.71,Low +1498,7.5,1.7,7.1,1.4,6.3,3.32,Moderate +1499,5.7,0.8,5.3,1.2,11,2.74,High +1500,6.8,0,9.2,0.2,7.8,2.8,Moderate +1501,9.7,3.6,7.7,1.6,1.4,3.22,High +1502,8.2,0.2,5.3,2.7,7.6,3.55,High +1503,7.7,3.6,5.5,4.9,2.3,3.06,High +1504,6.6,1.6,5.8,3,7,2.73,High +1505,9,1.8,7.5,4.8,0.9,3.33,High +1506,6.3,3.5,7.9,1.3,5,3.32,Moderate +1507,6.3,3.2,5.2,6,3.3,3,High +1508,7,2,9.4,2.3,3.3,2.98,Moderate +1509,7.7,0.2,5,1.5,9.6,3,High +1510,5.6,1.6,8.2,4.3,4.3,2.91,Low +1511,5.9,0.3,9.7,1.6,6.5,2.76,Low +1512,9.1,3.1,8,1.3,2.5,3.46,High +1513,6.3,0.5,7.5,3.5,6.2,2.87,Moderate +1514,6.8,2.6,9.5,0.8,4.3,2.58,Moderate +1515,6.9,0.6,8.1,4.4,4,3,Moderate +1516,9.8,0.3,8,0.3,5.6,3.53,High +1517,9.5,2.1,8.3,3.4,0.7,3.35,High +1518,5.6,1.9,8,0.2,8.3,2.99,Low +1519,6.4,0.1,7.1,5.4,5,2.72,Moderate +1520,9.6,3,8.7,1.9,0.8,3.45,High +1521,6,0.8,8.4,1.3,7.5,3.19,Moderate +1522,8.9,1.8,9,3.6,0.7,3.27,High +1523,8.3,0.9,6.4,1.9,6.5,3.18,High +1524,6,1.8,9.5,0.6,6.1,2.78,Moderate +1525,8.6,2.7,5.5,5.5,1.7,2.9,High +1526,8.8,1,8.5,0.2,5.5,3.52,High +1527,9.2,1.8,8.2,1.1,3.7,3.6,High +1528,7.4,2.5,7.3,5.4,1.4,3.25,Moderate +1529,7.5,3.4,9,1.7,2.4,3.03,Moderate +1530,9.1,0.9,7.6,4.8,1.6,3.08,High +1531,6.8,2.6,6.2,0.7,7.7,3,Moderate +1532,6.4,3.4,6.7,5.8,1.7,2.98,Moderate +1533,9.9,1.1,5.2,4.2,3.6,3.3,High +1534,8.5,0.1,9.4,0.8,5.2,3.25,High +1535,5.6,0.7,9.8,4.2,3.7,2.75,Low +1536,6.7,0.9,7.4,3.3,5.7,3.26,Moderate +1537,8.2,1,9.7,0.9,4.2,2.81,High +1538,7.2,2.3,7.2,2.5,4.8,3.03,Moderate +1539,8.7,2.7,9.2,0.8,2.6,3.58,High +1540,6.8,1.9,6.6,0.9,7.8,3.38,Moderate +1541,6.1,0.4,8.4,4,5.1,2.88,Moderate +1542,7.9,3.9,7.7,4.1,0.4,3.4,Moderate +1543,5.4,0.8,7.2,3.5,7.1,2.71,Low +1544,9,2.4,6,3,3.6,3.32,High +1545,8.7,3.1,7.5,1.4,3.3,2.99,High +1546,8.7,1,5.9,3.2,5.2,3.17,High +1547,6.4,2.5,5.6,3.9,5.6,2.89,High +1548,8.9,2.4,9.9,1,1.8,3.44,High +1549,8.4,0.3,7,5.8,2.5,2.9,High +1550,5.6,2.8,8.2,2.2,5.2,2.91,Low +1551,9.8,0.1,6.5,5.5,2.1,3.24,High +1552,7.7,3.3,5.5,5.7,1.8,2.99,High +1553,9,0.7,8.6,2.2,3.5,3.62,High +1554,9.8,0.5,7.1,2.9,3.7,3.38,High +1555,6.9,1.5,5.3,4.1,6.2,2.77,High +1556,9.1,3.2,7.4,1.3,3,3.31,High +1557,8.2,1.2,6.2,4.4,4,3.08,High +1558,6.2,3.7,7.6,2.2,4.3,2.84,Moderate +1559,9.4,1.6,6.7,1.2,5.1,3.11,High +1560,8.4,1.2,7.9,0.4,6.1,3.06,High +1561,6,1.6,9.7,2.3,4.4,2.66,Moderate +1562,5.6,0.2,6.5,0.9,10.8,3,Low +1563,5.9,3,5.1,3.3,6.7,2.91,High +1564,7.8,1.3,6.5,4.4,4,2.69,Moderate +1565,9.4,0.8,5.5,5.4,2.9,3.55,High +1566,6.8,0.5,7.9,3.2,5.6,2.61,Moderate +1567,6,1.8,9,3.5,3.7,2.92,Moderate +1568,8.5,3.2,8.1,0.6,3.6,3.09,High +1569,8.6,2.7,5.1,2.5,5.1,3.54,High +1570,6.1,2.4,9.6,4.7,1.2,2.67,Moderate +1571,9.6,3.9,5.1,3.4,2,3.65,High +1572,6.3,3.9,8.1,4.5,1.2,2.89,Moderate +1573,5.4,0.7,8.8,0.1,9,2.57,Low +1574,8.1,2.8,6.7,0.6,5.8,3.5,High +1575,5.3,2.4,7.6,4.5,4.2,2.25,Low +1576,7,0.1,6.7,5.9,4.3,3.12,Moderate +1577,9.4,1.3,7.9,4.6,0.8,3.34,High +1578,5.4,2,9.8,4.2,2.6,2.8,Low +1579,5.4,0.8,8.9,5,3.9,3.12,Low +1580,5.1,3.3,8.9,1.6,5.1,3.02,Low +1581,8.5,0.9,5.2,1.2,8.2,3.17,High +1582,7.1,2,7.4,1.6,5.9,2.86,Moderate +1583,5.1,2.4,7,1.8,7.7,2.84,Low +1584,9.3,2,5.7,4.2,2.8,3.51,High +1585,6,1.8,5.3,5,5.9,2.88,High +1586,8.7,2.5,9,1.6,2.2,3.53,High +1587,8.9,1.8,9.7,1.8,1.8,3.63,High +1588,9.1,2.2,5.9,2.8,4,3.33,High +1589,9.8,3,9.1,0.1,2,3.9,High +1590,9.2,0.2,9.3,2.9,2.4,3.29,High +1591,6,1.3,6.4,3.2,7.1,2.84,Moderate +1592,6.2,1.8,7.6,4.6,3.8,2.98,Moderate +1593,7.2,3.2,8.1,0.6,4.9,3.04,Moderate +1594,7,3,7.9,2.3,3.8,2.81,Moderate +1595,5.9,0.9,7.9,2.5,6.8,2.63,Low +1596,8.3,3.4,6.3,2.9,3.1,3.26,High +1597,9.9,1.3,8,0.4,4.4,3.33,High +1598,9.8,2.9,8.9,1.7,0.7,3.51,High +1599,7.9,1.8,9.3,4.8,0.2,3.34,Moderate +1600,7.9,2.2,7.3,1.3,5.3,3.18,Moderate +1601,5,1,7.5,2.3,8.2,2.82,Low +1602,6.8,1.8,5.7,0.3,9.4,3.01,High +1603,8.9,2.3,8.8,0.6,3.4,3.02,High +1604,6.1,0,5.7,1.9,10.3,3.01,High +1605,5.6,3.9,6.5,0.8,7.2,2.92,Low +1606,5.3,3.4,9.8,1.4,4.1,2.53,Low +1607,7.3,0.1,8.2,2.5,5.9,2.92,Moderate +1608,8.3,1.7,5.9,4.1,4,3.11,High +1609,7.8,3.4,5.6,4.7,2.5,3.02,High +1610,8.5,1.8,9.7,0.6,3.4,3.34,High +1611,8.2,1.5,9.8,1.5,3,3.4,High +1612,10,1,7.2,3,2.8,3.37,High +1613,6.5,0.1,6.1,1.7,9.6,2.72,Moderate +1614,9.4,2.8,5.4,3.9,2.5,3.37,High +1615,8.3,3.8,5,1.5,5.4,3.43,High +1616,5.5,2.1,6.2,1.1,9.1,2.98,Low +1617,9.1,0.5,7.3,5.6,1.5,3.37,High +1618,5.9,1.3,7.1,1.9,7.8,2.91,Low +1619,6.4,3.9,5.8,4.4,3.5,2.91,High +1620,5.9,2.6,8.6,4.1,2.8,2.98,Low +1621,6.6,1,9.8,5.5,1.1,3.23,Moderate +1622,7.3,1.7,5.8,2.6,6.6,3.07,High +1623,7.7,0.1,7.2,4.7,4.3,3.37,Moderate +1624,9.5,0.1,7.8,4.7,1.9,3.71,High +1625,7.7,1.3,5.7,5.3,4,3.36,High +1626,7.9,2.7,9,2.9,1.5,3.17,Moderate +1627,7,2.1,9,2.2,3.7,2.89,Moderate +1628,9.6,0.4,8.2,2.4,3.4,3.4,High +1629,7,2.7,5.3,3.6,5.4,3.17,High +1630,5.9,3.6,8.3,5.3,0.9,2.99,Low +1631,7.4,2.2,9.6,4.3,0.5,2.77,Moderate +1632,7,1.6,6.4,1.6,7.4,2.97,Moderate +1633,9.3,0.3,8.4,1,5,3.29,High +1634,6.3,3.1,9.4,1.2,4,2.91,Moderate +1635,7.3,1.9,9.4,4.1,1.3,3.51,Moderate +1636,9.2,0,7,5.4,2.4,3.41,High +1637,8.7,2.2,7.6,1.9,3.6,3.73,High +1638,7.1,2.9,9.3,0.7,4,3.12,Moderate +1639,7.3,1.6,8.4,1.5,5.2,3.27,Moderate +1640,7.1,3.6,10,0.4,2.9,3.13,Moderate +1641,6.2,3.8,9.8,0.4,3.8,3.17,Moderate +1642,5.1,2.4,6.4,5.2,4.9,2.77,Low +1643,6.4,2.7,8.4,1.3,5.2,2.94,Moderate +1644,6.4,3.2,9,2.5,2.9,2.87,Moderate +1645,8,2.4,9.1,1.9,2.6,3.01,Moderate +1646,7.7,1.8,7.2,0.5,6.8,2.97,Moderate +1647,8.6,0.9,6,2.5,6,3.38,High +1648,6.9,1.8,7.7,1.2,6.4,2.75,Moderate +1649,5.8,3.5,7.2,2.5,5,2.87,Low +1650,7.8,2.2,8.5,1,4.5,3.06,Moderate +1651,6.3,3.2,9.7,0.7,4.1,2.65,Moderate +1652,5.3,1.3,5.7,4.3,7.4,2.79,High +1653,7.7,0.6,5,4.8,5.9,3.23,High +1654,6.7,2.3,6.6,0.5,7.9,2.77,Moderate +1655,6.1,0.8,7.1,3.9,6.1,3.4,Moderate +1656,9.8,2.4,7.4,2.5,1.9,3.56,High +1657,9.6,3.3,6.6,1.1,3.4,3.45,High +1658,8.7,2,5.3,4.3,3.7,2.96,High +1659,9,1.2,8.3,2.3,3.2,3.74,High +1660,9.4,2,6.6,4.5,1.5,3.46,High +1661,6.1,1.6,9.3,4.3,2.7,2.65,Moderate +1662,6.8,1.1,5.9,4.5,5.7,2.93,High +1663,6.3,1.8,6.9,5.9,3.1,2.8,Moderate +1664,5.4,2.4,8,2.5,5.7,2.77,Low +1665,7.2,0.2,7.6,3,6,2.83,Moderate +1666,6.3,0.7,9.8,5.1,2.1,3.03,Moderate +1667,6.2,1.3,6,3,7.5,3.12,Moderate +1668,5.8,3.2,9,0.8,5.2,2.88,Low +1669,7,0.7,6.3,1.6,8.4,2.63,Moderate +1670,9.7,0.5,9.9,0.9,3,3.72,High +1671,8.9,1.4,5.7,5.1,2.9,3.55,High +1672,7.8,1.9,7.5,4.4,2.4,2.91,Moderate +1673,5.4,2.7,9.5,0.3,6.1,2.9,Low +1674,7.2,1.6,5.7,3,6.5,2.94,High +1675,5.6,1.9,8.8,1.5,6.2,2.89,Low +1676,8.4,3.4,7.1,3.9,1.2,3.26,High +1677,5.2,0.5,6,2.4,9.9,2.69,Low +1678,8.3,2.8,7.9,1.8,3.2,3.44,High +1679,7.9,1.4,5.4,6,3.3,3.11,High +1680,8.3,1.3,7,1.6,5.8,3.39,High +1681,6.7,1.6,8.6,3.1,4,3.54,Moderate +1682,9.6,0.2,7.9,5.1,1.2,3.46,High +1683,6.2,3.5,5.1,4.4,4.8,2.97,High +1684,7.2,0.2,9.6,2.8,4.2,3.19,Moderate +1685,5.1,2.8,7.4,0.7,8,3.15,Low +1686,7.5,3.3,9.3,2.4,1.5,3.36,Moderate +1687,5.1,2.8,7.1,3.4,5.6,2.5,Low +1688,9.6,0.5,8.4,0,5.5,3.7,High +1689,9.6,0.5,5.5,2,6.4,3.19,High +1690,7.9,1.8,5.2,1.9,7.2,3.07,High +1691,9.1,2.8,8.6,2.4,1.1,3.24,High +1692,6.4,3.3,9.9,2.2,2.2,2.9,Moderate +1693,5,0.6,6.6,3.5,8.3,2.89,Low +1694,8.9,3,8,2.6,1.5,3.29,High +1695,8.2,2.5,7.8,5.4,0.1,3.4,High +1696,9.4,0.9,5.4,2.9,5.4,3.56,High +1697,7.6,3.3,7.2,3.4,2.5,3.03,Moderate +1698,8.1,3.3,5.8,3.6,3.2,3.22,High +1699,8,0.7,5.6,5.9,3.8,2.93,High +1700,5.9,2.7,8,3.9,3.5,2.78,Low +1701,5.4,3.6,6.9,1.9,6.2,2.35,Low +1702,9.3,3.7,6.5,3.9,0.6,3.24,High +1703,8.9,3.7,6.2,3,2.2,3.49,High +1704,5,2.3,6.7,1.9,8.1,2.64,Low +1705,8.2,3.4,8,3.8,0.6,3.26,High +1706,7.3,0,7.8,4,4.9,2.75,Moderate +1707,8,2.9,7.9,0.3,4.9,3.25,Moderate +1708,6.4,0.3,7.1,3.3,6.9,2.77,Moderate +1709,6.6,2.9,8.2,2,4.3,3.14,Moderate +1710,8.2,2.2,5.1,4.2,4.3,3.48,High +1711,6.9,3.8,9.1,2.5,1.7,2.88,Moderate +1712,6.7,1.9,6.5,3.1,5.8,2.87,Moderate +1713,5.8,3.9,5.5,5.6,3.2,2.88,High +1714,8.6,1.7,8.2,1.9,3.6,3.46,High +1715,6.5,2.3,7.5,3.5,4.2,2.8,Moderate +1716,5.4,0.2,6.3,0.4,11.7,2.53,Low +1717,5.5,3.3,5.2,4,6,2.95,High +1718,7.4,1.2,7.6,2.3,5.5,3.03,Moderate +1719,7.8,0.5,10,2.4,3.3,3.43,Moderate +1720,6.8,3.3,7.3,4.3,2.3,2.83,Moderate +1721,5.5,3.4,8.7,1.3,5.1,2.74,Low +1722,9.9,1,7.3,0.2,5.6,3.32,High +1723,7,2.3,9.8,2.5,2.4,3.09,Moderate +1724,5.2,1.3,7.9,5.7,3.9,3.04,Low +1725,9.3,0.9,6.1,1.2,6.5,3.29,High +1726,7.5,1.9,6.3,3,5.3,3.4,Moderate +1727,5.2,0.5,9.4,4.5,4.4,2.9,Low +1728,6.8,3,8.9,4,1.3,2.49,Moderate +1729,8.6,0.8,6.7,2.8,5.1,3.52,High +1730,6.6,0.6,7,5.9,3.9,2.83,Moderate +1731,6.1,2.4,7.2,0.4,7.9,3.29,Moderate +1732,7.6,3.5,6.4,0.5,6,3.12,Moderate +1733,9.7,1.5,7.9,3.9,1,3.69,High +1734,5.7,1.2,5.7,4.9,6.5,2.66,High +1735,6.1,2.9,9.7,2.8,2.5,2.5,Moderate +1736,6.6,1.9,8,5.9,1.6,3.41,Moderate +1737,9.7,3.4,9.4,0.7,0.8,3.6,High +1738,7,3.8,7.1,3.6,2.5,3.11,Moderate +1739,8.5,3.8,6.2,4.1,1.4,2.93,High +1740,8.9,2.2,8.3,1.5,3.1,3.37,High +1741,7.4,2.5,7,1.2,5.9,3.11,Moderate +1742,8.7,1.6,6.8,2.4,4.5,3.42,High +1743,7,2.2,7.7,3,4.1,3.05,Moderate +1744,5.8,0.5,9.7,3.6,4.4,2.65,Low +1745,8.3,1.6,9.5,2.9,1.7,3.12,High +1746,9.8,3.3,9.3,0.3,1.3,3.73,High +1747,6.4,1.1,6.4,5.1,5,2.79,Moderate +1748,6.2,3.2,7.8,0,6.8,2.8,Moderate +1749,7.1,1.6,5.6,4.1,5.6,3.28,High +1750,8.6,0,9.8,4.6,1,3.48,High +1751,9.5,0.1,9.7,3.8,0.9,3.57,High +1752,9.7,1.8,8,2.1,2.4,3.82,High +1753,9.7,0.3,7.5,4.1,2.4,3.53,High +1754,9.5,3.8,5.3,2.2,3.2,3.7,High +1755,5.1,1.3,7.7,5.5,4.4,2.8,Low +1756,7.7,1.1,9.5,5.3,0.4,2.99,Moderate +1757,7,3.6,6.9,4.4,2.1,2.84,Moderate +1758,9.6,1.8,8.7,1.4,2.5,3.43,High +1759,5.1,0.4,7.5,4.1,6.9,3.01,Low +1760,8.5,2.8,7.5,4.8,0.4,3.06,High +1761,7.4,1.8,6,1.8,7,3.13,Moderate +1762,6.2,1.2,8.9,2,5.7,2.85,Moderate +1763,6.2,0.7,8.9,0.8,7.4,3.02,Moderate +1764,8.4,2.5,9.1,0.2,3.8,2.65,High +1765,6.5,1.1,5.7,1.7,9,3.02,High +1766,8.3,1.5,8.6,1.9,3.7,2.86,High +1767,6.5,2.2,5.1,0.5,9.7,3.1,High +1768,8.6,0.4,9.2,4.2,1.6,3.27,High +1769,8.1,3.3,7,1.2,4.4,3.8,High +1770,7.7,2.3,9.7,3.9,0.4,3.3,Moderate +1771,9.4,3.2,9.7,0.2,1.5,3.4,High +1772,9.2,2,8.7,0.6,3.5,3.03,High +1773,6.3,2.9,5.8,2.1,6.9,2.78,High +1774,8.5,1.5,7.8,0.6,5.6,3.02,High +1775,9,1.5,8.2,3.8,1.5,3.41,High +1776,8.1,1.7,5.9,5.7,2.6,3.17,High +1777,8.8,0.8,6.7,4.9,2.8,3.53,High +1778,7.2,2.9,6.9,1.3,5.7,3.23,Moderate +1779,8.2,3.9,6.6,2.4,2.9,3.32,High +1780,9.2,3,5.3,6,0.5,3.77,High +1781,8.8,3.5,8.3,2.9,0.5,3.26,High +1782,9.4,0.8,5.4,4.7,3.7,3.25,High +1783,9.2,0.7,9.3,3.3,1.5,3.64,High +1784,7.1,0.8,6.4,3,6.7,3.08,Moderate +1785,7.7,3.2,9,2.4,1.7,3.03,Moderate +1786,5.3,3.5,5.4,1.5,8.3,2.91,High +1787,8.5,1.6,9.4,1.3,3.2,2.9,High +1788,7.7,3.5,9.6,0.9,2.3,3.39,Moderate +1789,7.3,2.2,9.7,4.8,0,3.25,Moderate +1790,6.9,0,5,2.8,9.3,2.85,High +1791,7.4,0.1,8.4,1.8,6.3,2.75,Moderate +1792,5.8,1.6,6.2,3.2,7.2,2.98,Low +1793,6,2,5.8,4,6.2,2.81,High +1794,7.3,0.3,8,1.6,6.8,3.15,Moderate +1795,7.6,2.1,9.6,2.6,2.1,2.78,Moderate +1796,9.7,3.1,6.4,4.1,0.7,3.76,High +1797,7.2,3.3,9.1,0.8,3.6,2.87,Moderate +1798,6.5,1.2,8.6,1.4,6.3,3.18,Moderate +1799,5,2.9,5.9,0.6,9.6,2.63,High +1800,7.4,0.2,9.9,4.3,2.2,2.84,Moderate +1801,6.6,1.3,7.2,3.8,5.1,2.93,Moderate +1802,9.3,1,6.9,5.2,1.6,3.32,High +1803,8.3,1.4,8.4,0.1,5.8,3.23,High +1804,9.1,3.8,9.6,1.4,0.1,3.71,High +1805,7.6,1.4,7.3,4.1,3.6,3.09,Moderate +1806,9.6,3.3,9.9,1.1,0.1,3.5,High +1807,6.4,0.4,5.6,1.7,9.9,3.21,High +1808,9.5,2.5,5,1.1,5.9,3.52,High +1809,5.5,1.5,7.5,0.3,9.2,2.61,Low +1810,8.2,1.9,7.5,2.6,3.8,3.13,High +1811,9.8,0.9,7.6,4.2,1.5,3.62,High +1812,6.9,1.9,5.4,3.7,6.1,3.05,High +1813,6.4,0.6,7.7,3.2,6.1,3,Moderate +1814,8.1,0.8,7.3,4.3,3.5,3.12,High +1815,7.6,1.6,6.6,3.7,4.5,3.18,Moderate +1816,5.4,1.8,9.5,0.6,6.7,2.9,Low +1817,9.9,3.8,5.4,4.6,0.3,3.69,High +1818,7.1,1.8,8.2,4.6,2.3,2.98,Moderate +1819,5.2,2.4,5.9,2.1,8.4,2.69,High +1820,6.7,0.4,5.7,0.2,11,2.58,High +1821,7.4,3.8,5.6,5.7,1.5,3.27,High +1822,8.2,3.3,5.5,3,4,3.5,High +1823,8.5,2.3,9.2,0.3,3.7,3.34,High +1824,6.9,1.4,8.1,5.3,2.3,3.42,Moderate +1825,7.5,3.3,7,0.6,5.6,2.82,Moderate +1826,8.6,3,5.3,1.3,5.8,3.06,High +1827,6.4,2.2,5.7,0.8,8.9,2.89,High +1828,6.8,3.2,7.6,0.8,5.6,2.78,Moderate +1829,8.7,1.6,6.3,2.3,5.1,2.87,High +1830,6.2,1.6,5.1,4.6,6.5,2.92,High +1831,5.9,0.2,8.3,4.6,5,2.88,Low +1832,6,2.9,8.5,1.5,5.1,3.17,Moderate +1833,9.5,0.4,9.9,3.6,0.6,3.5,High +1834,8.6,0.8,7.2,0.4,7,3.32,High +1835,6.9,3,6.9,2,5.2,3.23,Moderate +1836,5.2,1.5,5.8,4.2,7.3,2.83,High +1837,5.5,2.7,6.4,1.2,8.2,2.75,Low +1838,7.4,2,6.6,0.8,7.2,3.1,Moderate +1839,6.9,2.7,8.9,2.9,2.6,2.77,Moderate +1840,6.4,0.6,6.2,1.3,9.5,3.04,Moderate +1841,7.6,2.3,9.7,0.9,3.5,3.36,Moderate +1842,7.8,1,6.3,0.2,8.7,3.27,Moderate +1843,6.5,3,5.2,1.3,8,3.17,High +1844,7.3,2.8,6.9,1,6,3.24,Moderate +1845,7,2.3,9.7,0.3,4.7,2.64,Moderate +1846,7.5,0.1,6.6,4.9,4.9,3.14,Moderate +1847,7.8,1.8,6.4,1.8,6.2,3.39,Moderate +1848,9.8,1.8,7,4.6,0.8,3.39,High +1849,7.1,2.2,6.2,4.5,4,3.34,Moderate +1850,8.9,0.9,8.6,4.5,1.1,3.36,High +1851,6.7,0.7,5,2.7,8.9,3.15,High +1852,5.9,3.4,6.3,1.4,7,2.48,Low +1853,7.4,2,6.1,1.6,6.9,3.22,Moderate +1854,8.9,1.8,8.6,3.5,1.2,3.17,High +1855,5.7,3.9,9.1,1.1,4.2,2.81,Low +1856,5.7,3,7.3,4.7,3.3,2.82,Low +1857,8.7,2.4,8.4,0.1,4.4,3.51,High +1858,5,0.1,9.3,4.1,5.5,2.47,Low +1859,6.3,2.8,9,1.8,4.1,2.79,Moderate +1860,7.5,3.1,6.1,1.6,5.7,3.07,Moderate +1861,6.2,4,6,3.5,4.3,2.88,Moderate +1862,8.2,3,9.9,0.5,2.4,3.3,High +1863,8.8,1.4,5.9,2.5,5.4,3.29,High +1864,7.7,4,7,3.3,2,3.44,Moderate +1865,6.8,1.6,8.5,5.6,1.5,3.33,Moderate +1866,5.4,0.8,7.5,0.1,10.2,2.86,Low +1867,6.3,2.1,5.1,1.6,8.9,3.49,High +1868,9.6,2.6,7.1,4.4,0.3,3.54,High +1869,8.9,0.8,5.7,4.1,4.5,3.62,High +1870,8.7,2.5,9.9,1.5,1.4,3.36,High +1871,5.6,3.3,6.3,4.7,4.1,2.85,Low +1872,8,1.8,6.8,2.1,5.3,3.23,Moderate +1873,8.2,3,8.4,0.9,3.5,3.52,High +1874,7.4,2.1,8.9,3.7,1.9,3.1,Moderate +1875,7,3.6,5.8,6,1.6,2.99,High +1876,8.6,3.2,9.3,2.9,0,3.38,High +1877,6.5,2.8,5.6,2.4,6.7,2.9,High +1878,8,2,8.2,5.6,0.2,3.4,Moderate +1879,5.3,2.3,9.3,2.9,4.2,2.82,Low +1880,6.7,0.6,9.2,3.1,4.4,2.85,Moderate +1881,9.7,3.2,8.5,0,2.6,3.19,High +1882,9.6,0.7,6.4,3.1,4.2,3.38,High +1883,6.3,0.8,8,0.5,8.4,2.91,Moderate +1884,8.6,2.2,7.1,3.4,2.7,3.18,High +1885,6.8,3.7,5.3,4,4.2,3.04,High +1886,5.9,1.2,8.6,0.5,7.8,2.92,Low +1887,9.1,2.9,8.6,0.3,3.1,3.56,High +1888,9.2,0.2,5.1,2.2,7.3,3.61,High +1889,5.7,2.2,9.6,2.3,4.2,2.98,Low +1890,5.5,2.4,7.3,5.6,3.2,2.77,Low +1891,5.6,0.8,5.1,2.6,9.9,2.97,High +1892,8,2.5,7.7,0.5,5.3,3.12,Moderate +1893,7.2,4,9.2,3.2,0.4,2.95,Moderate +1894,7.4,2.7,9.4,3.4,1.1,3.04,Moderate +1895,9.7,0.2,5.1,4,5,3.25,High +1896,6.7,1.1,7.6,2.6,6,2.83,Moderate +1897,7.6,2.7,6.9,1.5,5.3,3.05,Moderate +1898,8.7,3,8.3,0.9,3.1,3.1,High +1899,7.9,2.3,7.4,3.3,3.1,3.75,Moderate +1900,8.6,0.4,8.7,0.8,5.5,3.22,High +1901,5.3,3.9,9.8,0.3,4.7,2.53,Low +1902,7.4,3.3,9.8,2.2,1.3,3.06,Moderate +1903,6.8,2.4,6.6,5.5,2.7,3.05,Moderate +1904,6.6,1.2,5.2,4.9,6.1,3.2,High +1905,7.3,1.3,7.4,4.9,3.1,2.83,Moderate +1906,6.9,1.3,5.9,3.6,6.3,2.94,High +1907,7.4,3.5,5.2,3.9,4,3.26,High +1908,9.4,2.9,9.6,0.7,1.4,3.57,High +1909,7.5,0.1,5,1.4,10,3.07,High +1910,5.9,0.1,9.5,0,8.5,2.79,Low +1911,8.7,0.6,9.6,4.6,0.5,3.57,High +1912,5,3.9,9.4,5.1,0.6,2.98,Low +1913,8.3,1.4,9.5,1.4,3.4,3.06,High +1914,9.6,0.6,6.1,3.3,4.4,3.47,High +1915,8.8,2.5,6.2,0,6.5,3.29,High +1916,9.5,1.6,7.6,2.5,2.8,3.7,High +1917,7.2,3.1,7.6,1.9,4.2,2.79,Moderate +1918,5.7,2.6,8.4,4.5,2.8,2.94,Low +1919,7.5,3.6,9.7,2.6,0.6,2.84,Moderate +1920,9.9,1.1,6,2.7,4.3,3.68,High +1921,5.3,3.9,7.9,3.3,3.6,2.79,Low +1922,5.2,2.4,8.6,2.5,5.3,3.21,Low +1923,8.8,0.9,6.1,1,7.2,3.53,High +1924,9.1,1.5,7.9,4,1.5,3.29,High +1925,6.2,0.7,9.9,3.7,3.5,2.73,Moderate +1926,6.3,2,6.6,1,8.1,3.09,Moderate +1927,6.3,0.1,8.5,3,6.1,2.99,Moderate +1928,5.5,3,5.1,1.5,8.9,2.66,High +1929,9.5,2.9,5.4,4.9,1.3,3.67,High +1930,8,2.7,10,0.8,2.5,3.2,Moderate +1931,8.1,1.8,5.2,0.1,8.8,3.28,High +1932,7.8,2.2,5.2,2.8,6,3,High +1933,9.6,1.6,8.1,3.7,1,3.46,High +1934,9.3,1.6,9.4,0.9,2.8,3.69,High +1935,6.4,0.2,9,2.5,5.9,2.81,Moderate +1936,9.5,3.3,7.8,2.1,1.3,3.28,High +1937,7.4,1.6,9.6,0.7,4.7,2.75,Moderate +1938,7.5,1.8,7.6,0.8,6.3,2.93,Moderate +1939,7.6,1,5.9,0.4,9.1,3.06,High +1940,8.1,2.9,8.4,2.2,2.4,3.52,High +1941,6.9,1.5,8.2,3,4.4,2.99,Moderate +1942,8.2,1.2,5.1,5.3,4.2,3.19,High +1943,6.1,3.7,8.6,4.3,1.3,2.79,Moderate +1944,7.6,0.7,6.5,1.9,7.3,3,Moderate +1945,5.8,0.8,8.9,1,7.5,2.89,Low +1946,9.9,1.3,5.6,3.4,3.8,3.43,High +1947,9.5,3.1,8.1,1,2.3,3.25,High +1948,8.4,2.9,9.8,0.8,2.1,3.28,High +1949,5.1,2.2,8.5,4.7,3.5,2.64,Low +1950,7.6,1.3,9.3,2.7,3.1,2.98,Moderate +1951,9,2.3,8.9,1.3,2.5,3.24,High +1952,7.7,0.9,7.4,1.9,6.1,3.31,Moderate +1953,6.3,3.9,5.8,4.7,3.3,2.73,High +1954,5.2,1.6,9.7,0.1,7.4,2.95,Low +1955,7.9,2,9.4,0.4,4.3,3.42,Moderate +1956,8.3,3.8,9.1,0.1,2.7,3.48,High +1957,7.4,1.6,6.6,2.7,5.7,2.88,Moderate +1958,9.9,0.4,9.6,2,2.1,3.09,High +1959,8.1,3.3,6.8,2.5,3.3,2.86,High +1960,9.6,3.3,5.5,0.6,5,3.19,High +1961,7.1,0.4,8.1,0.9,7.5,3.02,Moderate +1962,6.6,2.7,7.4,5.9,1.4,2.99,Moderate +1963,9.4,1.4,5.2,5.1,2.9,3.59,High +1964,9.5,0.9,9.5,1.3,2.8,3.24,High +1965,9.9,1.1,9.8,0.2,3,3.54,High +1966,7.4,0.9,8.5,1.1,6.1,3.48,Moderate +1967,7.8,1,9.8,0.2,5.2,3.04,Moderate +1968,7.1,0.9,7.5,5.2,3.3,2.92,Moderate +1969,8.6,2.3,5.4,4.2,3.5,3.38,High +1970,6.3,1.7,6.8,5.2,4,2.84,Moderate +1971,5.6,2.3,5.7,4.2,6.2,2.81,High +1972,7.4,3.7,7.6,2.6,2.7,3.29,Moderate +1973,7.9,2.8,5.5,4.9,2.9,3.03,High +1974,8.9,1.5,5.5,3.8,4.3,3.31,High +1975,9.4,3.6,9.8,1,0.2,3.32,High +1976,8,2.4,6.8,5.4,1.4,3.42,Moderate +1977,7.5,1.9,10,2.3,2.3,3.14,Moderate +1978,9.1,3.1,8.9,2.1,0.8,3.1,High +1979,6.3,3.4,9.5,0.9,3.9,2.97,Moderate +1980,8.2,2.2,5.3,4.5,3.8,3.43,High +1981,7.5,2.6,7.5,3,3.4,3.02,Moderate +1982,5.8,0.8,9.9,0.9,6.6,2.71,Low +1983,6.3,2.4,8.1,0.9,6.3,3.07,Moderate +1984,6.2,1.2,9.7,5,1.9,3.06,Moderate +1985,8.5,0.3,7.1,3.4,4.7,3.23,High +1986,8,1.3,8.9,4.9,0.9,2.93,Moderate +1987,6.6,3.4,5.5,5,3.5,2.9,High +1988,9.5,1.5,6.4,3,3.6,3.86,High +1989,7.3,1.4,8.5,4.6,2.2,3.28,Moderate +1990,7,2.7,7.4,6,0.9,2.85,Moderate +1991,8.6,3.8,9.2,2.2,0.2,3.26,High +1992,6.3,1.5,5.1,3.1,8,3.21,High +1993,7.5,2.1,9.9,4.1,0.4,3.04,Moderate +1994,7.1,1.4,9,3.1,3.4,2.85,Moderate +1995,7.9,3.4,9,0.5,3.2,3.08,Moderate +1996,6.5,0.2,7.4,2.1,7.8,3.32,Moderate +1997,6.3,2.8,8.8,1.5,4.6,2.65,Moderate +1998,6.2,0,6.2,0.8,10.8,3.14,Moderate +1999,8.1,0.7,7.6,3.5,4.1,3.04,High +2000,9,1.7,7.3,3.1,2.9,3.58,High