Datasets:
updated to datasets 4.*
Browse files- README.md +12 -9
- dating/train.csv +0 -0
- speeddating.csv +0 -0
- speeddating.py +0 -317
README.md
CHANGED
|
@@ -1,17 +1,20 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
-
- speeddating
|
| 6 |
- tabular_classification
|
| 7 |
- binary_classification
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
- 1K<n<10K
|
| 11 |
-
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
|
| 12 |
- tabular-classification
|
| 13 |
-
configs:
|
| 14 |
-
- dating
|
| 15 |
---
|
| 16 |
# Speed dating
|
| 17 |
The [Speed dating dataset](https://www.openml.org/search?type=data&sort=nr_of_likes&status=active&id=40536) from OpenML.
|
|
|
|
| 1 |
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: dating
|
| 4 |
+
data_files:
|
| 5 |
+
- path: dating/train.csv
|
| 6 |
+
split: train
|
| 7 |
+
default: true
|
| 8 |
+
language: en
|
| 9 |
+
license: unknown
|
| 10 |
+
pretty_name: Speeddating
|
| 11 |
+
size_categories: 1M<n<10M
|
| 12 |
tags:
|
|
|
|
| 13 |
- tabular_classification
|
| 14 |
- binary_classification
|
| 15 |
+
- multiclass_classification
|
| 16 |
+
task_categories:
|
|
|
|
|
|
|
| 17 |
- tabular-classification
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
# Speed dating
|
| 20 |
The [Speed dating dataset](https://www.openml.org/search?type=data&sort=nr_of_likes&status=active&id=40536) from OpenML.
|
dating/train.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
speeddating.csv
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
speeddating.py
DELETED
|
@@ -1,317 +0,0 @@
|
|
| 1 |
-
"""Speeddating Dataset"""
|
| 2 |
-
|
| 3 |
-
from typing import List
|
| 4 |
-
|
| 5 |
-
import datasets
|
| 6 |
-
|
| 7 |
-
import pandas
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
VERSION = datasets.Version("1.0.0")
|
| 11 |
-
_BASE_FEATURE_NAMES = [
|
| 12 |
-
"is_dater_male",
|
| 13 |
-
"dater_age",
|
| 14 |
-
"dated_age",
|
| 15 |
-
"age_difference",
|
| 16 |
-
"dater_race",
|
| 17 |
-
"dated_race",
|
| 18 |
-
"are_same_race",
|
| 19 |
-
"same_race_importance_for_dater",
|
| 20 |
-
"same_religion_importance_for_dater",
|
| 21 |
-
"attractiveness_importance_for_dated",
|
| 22 |
-
"sincerity_importance_for_dated",
|
| 23 |
-
"intelligence_importance_for_dated",
|
| 24 |
-
"humor_importance_for_dated",
|
| 25 |
-
"ambition_importance_for_dated",
|
| 26 |
-
"shared_interests_importance_for_dated",
|
| 27 |
-
"attractiveness_score_of_dater_from_dated",
|
| 28 |
-
"sincerity_score_of_dater_from_dated",
|
| 29 |
-
"intelligence_score_of_dater_from_dated",
|
| 30 |
-
"humor_score_of_dater_from_dated",
|
| 31 |
-
"ambition_score_of_dater_from_dated",
|
| 32 |
-
"shared_interests_score_of_dater_from_dated",
|
| 33 |
-
"attractiveness_importance_for_dater",
|
| 34 |
-
"sincerity_importance_for_dater",
|
| 35 |
-
"intelligence_importance_for_dater",
|
| 36 |
-
"humor_importance_for_dater",
|
| 37 |
-
"ambition_importance_for_dater",
|
| 38 |
-
"shared_interests_importance_for_dater",
|
| 39 |
-
"self_reported_attractiveness_of_dater",
|
| 40 |
-
"self_reported_sincerity_of_dater",
|
| 41 |
-
"self_reported_intelligence_of_dater",
|
| 42 |
-
"self_reported_humor_of_dater",
|
| 43 |
-
"self_reported_ambition_of_dater",
|
| 44 |
-
"reported_attractiveness_of_dated_from_dater",
|
| 45 |
-
"reported_sincerity_of_dated_from_dater",
|
| 46 |
-
"reported_intelligence_of_dated_from_dater",
|
| 47 |
-
"reported_humor_of_dated_from_dater",
|
| 48 |
-
"reported_ambition_of_dated_from_dater",
|
| 49 |
-
"reported_shared_interests_of_dated_from_dater",
|
| 50 |
-
"dater_interest_in_sports",
|
| 51 |
-
"dater_interest_in_tvsports",
|
| 52 |
-
"dater_interest_in_exercise",
|
| 53 |
-
"dater_interest_in_dining",
|
| 54 |
-
"dater_interest_in_museums",
|
| 55 |
-
"dater_interest_in_art",
|
| 56 |
-
"dater_interest_in_hiking",
|
| 57 |
-
"dater_interest_in_gaming",
|
| 58 |
-
"dater_interest_in_clubbing",
|
| 59 |
-
"dater_interest_in_reading",
|
| 60 |
-
"dater_interest_in_tv",
|
| 61 |
-
"dater_interest_in_theater",
|
| 62 |
-
"dater_interest_in_movies",
|
| 63 |
-
"dater_interest_in_concerts",
|
| 64 |
-
"dater_interest_in_music",
|
| 65 |
-
"dater_interest_in_shopping",
|
| 66 |
-
"dater_interest_in_yoga",
|
| 67 |
-
"interests_correlation",
|
| 68 |
-
"expected_satisfaction_of_dater",
|
| 69 |
-
"expected_number_of_likes_of_dater_from_20_people",
|
| 70 |
-
"expected_number_of_dates_for_dater",
|
| 71 |
-
"dater_liked_dated",
|
| 72 |
-
"probability_dated_wants_to_date",
|
| 73 |
-
"already_met_before",
|
| 74 |
-
"dater_wants_to_date",
|
| 75 |
-
"dated_wants_to_date",
|
| 76 |
-
"is_match"
|
| 77 |
-
]
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
DESCRIPTION = "Speed-dating dataset."
|
| 81 |
-
_HOMEPAGE = "https://www.openml.org/search?type=data&sort=nr_of_likes&status=active&id=40536"
|
| 82 |
-
_URLS = ("https://huggingface.co/datasets/mstz/speeddating/raw/main/speeddating.csv")
|
| 83 |
-
_CITATION = """"""
|
| 84 |
-
|
| 85 |
-
# Dataset info
|
| 86 |
-
urls_per_split = {
|
| 87 |
-
"train": "https://huggingface.co/datasets/mstz/speeddating/raw/main/speeddating.csv",
|
| 88 |
-
}
|
| 89 |
-
features_types_per_config = {
|
| 90 |
-
"dating": {
|
| 91 |
-
"is_dater_male": datasets.Value("bool"),
|
| 92 |
-
"dater_age": datasets.Value("int8"),
|
| 93 |
-
"dated_age": datasets.Value("int8"),
|
| 94 |
-
"age_difference": datasets.Value("int8"),
|
| 95 |
-
"dater_race": datasets.Value("string"),
|
| 96 |
-
"dated_race": datasets.Value("string"),
|
| 97 |
-
"are_same_race": datasets.Value("bool"),
|
| 98 |
-
"same_race_importance_for_dater": datasets.Value("float64"),
|
| 99 |
-
"same_religion_importance_for_dater": datasets.Value("float64"),
|
| 100 |
-
"attractiveness_importance_for_dated": datasets.Value("float64"),
|
| 101 |
-
"sincerity_importance_for_dated": datasets.Value("float64"),
|
| 102 |
-
"intelligence_importance_for_dated": datasets.Value("float64"),
|
| 103 |
-
"humor_importance_for_dated": datasets.Value("float64"),
|
| 104 |
-
"ambition_importance_for_dated": datasets.Value("float64"),
|
| 105 |
-
"shared_interests_importance_for_dated": datasets.Value("float64"),
|
| 106 |
-
"attractiveness_score_of_dater_from_dated": datasets.Value("float64"),
|
| 107 |
-
"sincerity_score_of_dater_from_dated": datasets.Value("float64"),
|
| 108 |
-
"intelligence_score_of_dater_from_dated": datasets.Value("float64"),
|
| 109 |
-
"humor_score_of_dater_from_dated": datasets.Value("float64"),
|
| 110 |
-
"ambition_score_of_dater_from_dated": datasets.Value("float64"),
|
| 111 |
-
"shared_interests_score_of_dater_from_dated": datasets.Value("float64"),
|
| 112 |
-
"attractiveness_importance_for_dater": datasets.Value("float64"),
|
| 113 |
-
"sincerity_importance_for_dater": datasets.Value("float64"),
|
| 114 |
-
"intelligence_importance_for_dater": datasets.Value("float64"),
|
| 115 |
-
"humor_importance_for_dater": datasets.Value("float64"),
|
| 116 |
-
"ambition_importance_for_dater": datasets.Value("float64"),
|
| 117 |
-
"shared_interests_importance_for_dater": datasets.Value("float64"),
|
| 118 |
-
"self_reported_attractiveness_of_dater": datasets.Value("float64"),
|
| 119 |
-
"self_reported_sincerity_of_dater": datasets.Value("float64"),
|
| 120 |
-
"self_reported_intelligence_of_dater": datasets.Value("float64"),
|
| 121 |
-
"self_reported_humor_of_dater": datasets.Value("float64"),
|
| 122 |
-
"self_reported_ambition_of_dater": datasets.Value("float64"),
|
| 123 |
-
"reported_attractiveness_of_dated_from_dater": datasets.Value("float64"),
|
| 124 |
-
"reported_sincerity_of_dated_from_dater": datasets.Value("float64"),
|
| 125 |
-
"reported_intelligence_of_dated_from_dater": datasets.Value("float64"),
|
| 126 |
-
"reported_humor_of_dated_from_dater": datasets.Value("float64"),
|
| 127 |
-
"reported_ambition_of_dated_from_dater": datasets.Value("float64"),
|
| 128 |
-
"reported_shared_interests_of_dated_from_dater": datasets.Value("float64"),
|
| 129 |
-
"dater_interest_in_sports": datasets.Value("float64"),
|
| 130 |
-
"dater_interest_in_tvsports": datasets.Value("float64"),
|
| 131 |
-
"dater_interest_in_exercise": datasets.Value("float64"),
|
| 132 |
-
"dater_interest_in_dining": datasets.Value("float64"),
|
| 133 |
-
"dater_interest_in_museums": datasets.Value("float64"),
|
| 134 |
-
"dater_interest_in_art": datasets.Value("float64"),
|
| 135 |
-
"dater_interest_in_hiking": datasets.Value("float64"),
|
| 136 |
-
"dater_interest_in_gaming": datasets.Value("float64"),
|
| 137 |
-
"dater_interest_in_clubbing": datasets.Value("float64"),
|
| 138 |
-
"dater_interest_in_reading": datasets.Value("float64"),
|
| 139 |
-
"dater_interest_in_tv": datasets.Value("float64"),
|
| 140 |
-
"dater_interest_in_theater": datasets.Value("float64"),
|
| 141 |
-
"dater_interest_in_movies": datasets.Value("float64"),
|
| 142 |
-
"dater_interest_in_concerts": datasets.Value("float64"),
|
| 143 |
-
"dater_interest_in_music": datasets.Value("float64"),
|
| 144 |
-
"dater_interest_in_shopping": datasets.Value("float64"),
|
| 145 |
-
"dater_interest_in_yoga": datasets.Value("float64"),
|
| 146 |
-
"interests_correlation": datasets.Value("float64"),
|
| 147 |
-
"expected_satisfaction_of_dater": datasets.Value("float64"),
|
| 148 |
-
"expected_number_of_likes_of_dater_from_20_people": datasets.Value("int8"),
|
| 149 |
-
"expected_number_of_dates_for_dater": datasets.Value("int8"),
|
| 150 |
-
"dater_liked_dated": datasets.Value("float64"),
|
| 151 |
-
"probability_dated_wants_to_date": datasets.Value("float64"),
|
| 152 |
-
"already_met_before": datasets.Value("bool"),
|
| 153 |
-
"dater_wants_to_date": datasets.Value("bool"),
|
| 154 |
-
"dated_wants_to_date": datasets.Value("bool"),
|
| 155 |
-
"is_match": datasets.ClassLabel(num_classes=2, names=("no", "yes"))
|
| 156 |
-
}
|
| 157 |
-
|
| 158 |
-
}
|
| 159 |
-
features_per_config = {k: datasets.Features(features_types_per_config[k]) for k in features_types_per_config}
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
class SpeeddatingConfig(datasets.BuilderConfig):
|
| 163 |
-
def __init__(self, **kwargs):
|
| 164 |
-
super(SpeeddatingConfig, self).__init__(version=VERSION, **kwargs)
|
| 165 |
-
self.features = features_per_config[kwargs["name"]]
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
class Speeddating(datasets.GeneratorBasedBuilder):
|
| 169 |
-
# dataset versions
|
| 170 |
-
DEFAULT_CONFIG = "dating"
|
| 171 |
-
BUILDER_CONFIGS = [
|
| 172 |
-
SpeeddatingConfig(name="dating",
|
| 173 |
-
description="Binary classification."),
|
| 174 |
-
]
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
def _info(self):
|
| 178 |
-
info = datasets.DatasetInfo(description=DESCRIPTION, citation=_CITATION, homepage=_HOMEPAGE,
|
| 179 |
-
features=features_per_config[self.config.name])
|
| 180 |
-
|
| 181 |
-
return info
|
| 182 |
-
|
| 183 |
-
def _split_generators(self, dl_manager: datasets.DownloadManager) -> List[datasets.SplitGenerator]:
|
| 184 |
-
downloads = dl_manager.download_and_extract(urls_per_split)
|
| 185 |
-
|
| 186 |
-
return [
|
| 187 |
-
datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloads["train"]}),
|
| 188 |
-
]
|
| 189 |
-
|
| 190 |
-
def _generate_examples(self, filepath: str):
|
| 191 |
-
data = pandas.read_csv(filepath)
|
| 192 |
-
data = self.preprocess(data, config=self.config.name)
|
| 193 |
-
|
| 194 |
-
for row_id, row in data.iterrows():
|
| 195 |
-
data_row = dict(row)
|
| 196 |
-
|
| 197 |
-
yield row_id, data_row
|
| 198 |
-
|
| 199 |
-
def preprocess(self, data: pandas.DataFrame, config: str = "dating") -> pandas.DataFrame:
|
| 200 |
-
data.loc[data.race == "?", "race"] = "unknown"
|
| 201 |
-
data.loc[data.race_o == "?", "race_o"] = "unknown"
|
| 202 |
-
data.loc[data.race == "Asian/Pacific Islander/Asian-American", "race"] = "asian"
|
| 203 |
-
data.loc[data.race_o == "Asian/Pacific Islander/Asian-American", "race_o"] = "asian"
|
| 204 |
-
data.loc[data.race == "European/Caucasian-American", "race"] = "caucasian"
|
| 205 |
-
data.loc[data.race_o == "European/Caucasian-American", "race_o"] = "caucasian"
|
| 206 |
-
data.loc[data.race == "Other", "race"] = "other"
|
| 207 |
-
data.loc[data.race_o == "Other", "race_o"] = "other"
|
| 208 |
-
data.loc[data.race == "Latino/Hispanic American", "race"] = "hispanic"
|
| 209 |
-
data.loc[data.race_o == "Latino/Hispanic American", "race_o"] = "hispanic"
|
| 210 |
-
data.loc[data.race == "Black/African American", "race"] = "african-american"
|
| 211 |
-
data.loc[data.race_o == "Black/African American", "race_o"] = "african-american"
|
| 212 |
-
|
| 213 |
-
data = data.rename(columns={"gender": "is_dater_male"})
|
| 214 |
-
data.loc[:, "is_dater_male"] = data.is_dater_male.apply(lambda x: 1 if x == "male" else 0)
|
| 215 |
-
|
| 216 |
-
data.drop("has_null", axis="columns", inplace=True)
|
| 217 |
-
data.drop("field", axis="columns", inplace=True)
|
| 218 |
-
data.drop("wave", axis="columns", inplace=True)
|
| 219 |
-
# data.drop("d_age", axis="columns", inplace=True)
|
| 220 |
-
data.drop("d_d_age", axis="columns", inplace=True)
|
| 221 |
-
data.drop("d_importance_same_race", axis="columns", inplace=True)
|
| 222 |
-
data.drop("d_importance_same_religion", axis="columns", inplace=True)
|
| 223 |
-
data.drop("d_pref_o_attractive", axis="columns", inplace=True)
|
| 224 |
-
data.drop("d_pref_o_sincere", axis="columns", inplace=True)
|
| 225 |
-
data.drop("d_pref_o_intelligence", axis="columns", inplace=True)
|
| 226 |
-
data.drop("d_pref_o_funny", axis="columns", inplace=True)
|
| 227 |
-
data.drop("d_pref_o_ambitious", axis="columns", inplace=True)
|
| 228 |
-
data.drop("d_pref_o_shared_interests", axis="columns", inplace=True)
|
| 229 |
-
data.drop("d_attractive_o", axis="columns", inplace=True)
|
| 230 |
-
data.drop("d_sinsere_o", axis="columns", inplace=True)
|
| 231 |
-
data.drop("d_intelligence_o", axis="columns", inplace=True)
|
| 232 |
-
data.drop("d_funny_o", axis="columns", inplace=True)
|
| 233 |
-
data.drop("d_ambitous_o", axis="columns", inplace=True)
|
| 234 |
-
data.drop("d_shared_interests_o", axis="columns", inplace=True)
|
| 235 |
-
data.drop("d_attractive_important", axis="columns", inplace=True)
|
| 236 |
-
data.drop("d_sincere_important", axis="columns", inplace=True)
|
| 237 |
-
data.drop("d_intellicence_important", axis="columns", inplace=True)
|
| 238 |
-
data.drop("d_funny_important", axis="columns", inplace=True)
|
| 239 |
-
data.drop("d_ambtition_important", axis="columns", inplace=True)
|
| 240 |
-
data.drop("d_shared_interests_important", axis="columns", inplace=True)
|
| 241 |
-
data.drop("d_attractive", axis="columns", inplace=True)
|
| 242 |
-
data.drop("d_sincere", axis="columns", inplace=True)
|
| 243 |
-
data.drop("d_intelligence", axis="columns", inplace=True)
|
| 244 |
-
data.drop("d_funny", axis="columns", inplace=True)
|
| 245 |
-
data.drop("d_ambition", axis="columns", inplace=True)
|
| 246 |
-
data.drop("d_attractive_partner", axis="columns", inplace=True)
|
| 247 |
-
data.drop("d_sincere_partner", axis="columns", inplace=True)
|
| 248 |
-
data.drop("d_intelligence_partner", axis="columns", inplace=True)
|
| 249 |
-
data.drop("d_funny_partner", axis="columns", inplace=True)
|
| 250 |
-
data.drop("d_ambition_partner", axis="columns", inplace=True)
|
| 251 |
-
data.drop("d_shared_interests_partner", axis="columns", inplace=True)
|
| 252 |
-
data.drop("d_sports", axis="columns", inplace=True)
|
| 253 |
-
data.drop("d_tvsports", axis="columns", inplace=True)
|
| 254 |
-
data.drop("d_exercise", axis="columns", inplace=True)
|
| 255 |
-
data.drop("d_dining", axis="columns", inplace=True)
|
| 256 |
-
data.drop("d_museums", axis="columns", inplace=True)
|
| 257 |
-
data.drop("d_art", axis="columns", inplace=True)
|
| 258 |
-
data.drop("d_hiking", axis="columns", inplace=True)
|
| 259 |
-
data.drop("d_gaming", axis="columns", inplace=True)
|
| 260 |
-
data.drop("d_clubbing", axis="columns", inplace=True)
|
| 261 |
-
data.drop("d_reading", axis="columns", inplace=True)
|
| 262 |
-
data.drop("d_tv", axis="columns", inplace=True)
|
| 263 |
-
data.drop("d_theater", axis="columns", inplace=True)
|
| 264 |
-
data.drop("d_movies", axis="columns", inplace=True)
|
| 265 |
-
data.drop("d_concerts", axis="columns", inplace=True)
|
| 266 |
-
data.drop("d_music", axis="columns", inplace=True)
|
| 267 |
-
data.drop("d_shopping", axis="columns", inplace=True)
|
| 268 |
-
data.drop("d_yoga", axis="columns", inplace=True)
|
| 269 |
-
data.drop("d_interests_correlate", axis="columns", inplace=True)
|
| 270 |
-
data.drop("d_expected_happy_with_sd_people", axis="columns", inplace=True)
|
| 271 |
-
data.drop("d_expected_num_interested_in_me", axis="columns", inplace=True)
|
| 272 |
-
data.drop("d_expected_num_matches", axis="columns", inplace=True)
|
| 273 |
-
data.drop("d_like", axis="columns", inplace=True)
|
| 274 |
-
data.drop("d_guess_prob_liked", axis="columns", inplace=True)
|
| 275 |
-
if "Unnamed: 123" in data.columns:
|
| 276 |
-
data.drop("Unnamed: 123", axis="columns", inplace=True)
|
| 277 |
-
|
| 278 |
-
data = data[data.age != "?"]
|
| 279 |
-
data = data[data.age_o != "?"]
|
| 280 |
-
data = data[data.importance_same_race != "?"]
|
| 281 |
-
data = data[data.pref_o_attractive != "?"]
|
| 282 |
-
data = data[data.pref_o_sincere != "?"]
|
| 283 |
-
data = data[data.interests_correlate != "?"]
|
| 284 |
-
data = data[data.pref_o_funny != "?"]
|
| 285 |
-
data = data[data.pref_o_ambitious != "?"]
|
| 286 |
-
data = data[data.pref_o_shared_interests != "?"]
|
| 287 |
-
data = data[data.attractive_o != "?"]
|
| 288 |
-
data = data[data.sinsere_o != "?"]
|
| 289 |
-
data = data[data.intelligence_o != "?"]
|
| 290 |
-
data = data[data.funny_o != "?"]
|
| 291 |
-
data = data[data.ambitous_o != "?"]
|
| 292 |
-
data = data[data.shared_interests_o != "?"]
|
| 293 |
-
data = data[data.funny_important != "?"]
|
| 294 |
-
data = data[data.ambtition_important != "?"]
|
| 295 |
-
data = data[data.shared_interests_important != "?"]
|
| 296 |
-
data = data[data.attractive != "?"]
|
| 297 |
-
data = data[data.sincere != "?"]
|
| 298 |
-
data = data[data.intelligence != "?"]
|
| 299 |
-
data = data[data.funny != "?"]
|
| 300 |
-
data = data[data.ambition != "?"]
|
| 301 |
-
data = data[data.attractive_partner != "?"]
|
| 302 |
-
data = data[data.sincere_partner != "?"]
|
| 303 |
-
data = data[data.intelligence_partner != "?"]
|
| 304 |
-
data = data[data.funny_partner != "?"]
|
| 305 |
-
data = data[data.ambition_partner != "?"]
|
| 306 |
-
data = data[data.shared_interests_partner != "?"]
|
| 307 |
-
data = data[data.expected_num_interested_in_me != "?"]
|
| 308 |
-
data = data[data.expected_num_matches != "?"]
|
| 309 |
-
data = data[data.like != "?"]
|
| 310 |
-
data = data[data.guess_prob_liked != "?"]
|
| 311 |
-
data = data[data.met != "?"]
|
| 312 |
-
|
| 313 |
-
data.columns = _BASE_FEATURE_NAMES
|
| 314 |
-
data = data.astype({"is_dater_male": "bool", "are_same_race": "bool", "already_met_before": "bool",
|
| 315 |
-
"dater_wants_to_date": "bool", "dated_wants_to_date": "bool"})
|
| 316 |
-
|
| 317 |
-
return data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|